forked from SEIR59/tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello Front-End</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/app.js" async defer></script>
</head>
<body>
<div class="info-container">
<div class="info score1">Player X : <span class="scoreX"></span></div>
<div class="info score2">Player O : <span class="scoreO"></span></div>
<div class="info next-up">Next up:</div>
</div>
<button class="play-hum">Play Human</button>
<button class="play-comp">Play Computer</button>
<button class="restart-btn">Restart</button>
<div class="container">
<div class="cell row1 col1" id="cell1"></div>
<div class="cell row1 col2" id="cell2"></div>
<div class="cell row1 col3" id="cell3"></div>
<div class="cell row2 col1" id="cell4"></div>
<div class="cell row2 col2" id="cell5"></div>
<div class="cell row2 col3" id="cell6"></div>
<div class="cell row3 col1" id="cell7"></div>
<div class="cell row3 col2" id="cell8"></div>
<div class="cell row3 col3" id="cell9"></div>
</div>
<div class="winner-message"></div>
</body>
</html>