-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (39 loc) · 1.4 KB
/
index.html
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
43
44
45
<!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="stylesheet" href="./style.css">
<script src="./crossZero.js" defer></script>
<title>Cross Zero</title>
</head>
<body>
<section>
<h1>Cross And Zero Game</h1>
<div class="game-section">
<div class="row row1">
<div class="col col1" id="a00"><h1></h1></div>
<div class="col col2" id="a01"><h1></h1></div>
<div class="col col3" id="a02"><h1></h1></div>
</div>
<div class="row row2">
<div class="col col1" id="a10"><h1></h1></div>
<div class="col col2" id="a11"><h1></h1></div>
<div class="col col3" id="a12"><h1></h1></div>
</div>
<div class="row row3">
<div class="col col1" id="a20"><h1></h1></div>
<div class="col col2" id="a21"><h1></h1></div>
<div class="col col3" id="a22"><h1></h1></div>
</div>
</div>
<div class="popUp">
<div class="popUpBox">
<h1>You Win!!</h1>
<button id=playAgain type="button">Play Again</button>
</div>
</div>
</section>
</body>
</html>