-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.06 KB
/
Copy pathindex.html
File metadata and controls
34 lines (34 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css"/>
<title>Gomoku: Home</title>
</head>
<body>
<header>
<h1 role="heading">Welcome to Gomoku Game</h1>
<p>School project for CSCI 130</p>
</header>
<ul role="tablist" class="nav">
<li role="tab"><a class="active" href="index.html">Home</a></li>
<li role="tab"><a href="game.html">Play game</a></li>
<li role="tab"><a href="how_to_play.html">How to play</a></li>
<li role="tab"><a href="about.html">About</a></li>
</ul>
<div class="container intro">
<section>
<p>Hello, welcome to Gomoku Game home page.</p>
<p>Here you can play the game with you friend or against an Computer AI.</p>
<br>
<a class="btn" href="game.html">Play Gomoku</a>
<br><br>
<p>Click on "Play Gomoku" to start your game.</p>
</section>
</div>
<footer>
<p role="doc-footnote">© 2017 CSU Fresno</p>
</footer>
</body>
</html>