-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.31 KB
/
Copy pathindex.html
File metadata and controls
42 lines (42 loc) · 1.31 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
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="logo2.png" type="image/x-icon" />
<title>Tik Tak To</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class="center">
<nav>
<h1>Tik Tak Toe</h1>
</nav>
<div class="box">
<div class="wndw1" id="w1">
<h2>Select Player</h2>
<button id="p1">
<img src="logo1.png" />
<span>Player 1</span>
</button>
<button id="p2">
<img src="logo3.png" />
<span>Player 2</span>
</button>
</div>
<div class="wndw center" id="w2">
<div class="pad"></div>
<div class="pause" onclick="wlt()"></div>
</div>
<div class="wndw2 pop" id="w3">
<header class="hide" id="h1">You Win!</header>
<header class="hide" id="h2">You Lost!</header>
<header class="hide" id="h3">Tie Game!</header>
<button onclick="restart()">Restart</button>
<button onclick="menu()">Menu</button>
</div>
</div>
<script src="pad.js"></script>
<script src="game.js"></script>
</body>
</html>