-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (36 loc) · 1.42 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>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css">
<title>Civil War | Tic Tac Toe</title>
<script src="script.js" type="text/javascript"></script>
</head>
<body>
<section>
<header>
<div id="player">It's
<span style="color: #C31010; font-size: 25px">Captain America's </span>
turn</div>
<div id="scoreboard">0 - 0</div>
<img src="media/cap-ame-shield.png" id="cap-ame" alt="Cap America" width="30px" height="30px">
<img src="media/ir-man-head.png" id="ir-man" alt="Iron Man" width="30px" height="30px">
</header>
<div class="main">
<div class="square players" id="pos1">a</div>
<div class="square players" id="pos2">a</div>
<div class="square players" id="pos3">a</div>
<div class="square players" id="pos4">a</div>
<div class="square players" id="pos5">a</div>
<div class="square players" id="pos6">a</div>
<div class="square players" id="pos7">a</div>
<div class="square players" id="pos8">a</div>
<div class="square players" id="pos9">a</div>
</div>
<footer>
<button id="resetButton">Start New Battle!!!</button>
</footer>
</section>
</body>
</html>