-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (29 loc) · 716 Bytes
/
Copy pathindex.html
File metadata and controls
34 lines (29 loc) · 716 Bytes
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">
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<header>
<h1>Tic Tac Toe</h1>
</header>
<section>
<div class="notice"></div>
<div class="board-holder"></div>
<div class="input-fields">
<input type="text" name="name-0" maxlength="21">
<span>VS</span>
<input type="text" name="name-1" maxlength="21">
</div>
<div class="button-group">
<button class="new">New Game</button>
</div>
</section>
<footer>
<p>powered by JavaScript</p>
</footer>
<script src="js/app.js"></script>
</body>
</html>