-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (80 loc) · 3.29 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1.0, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="/CSS/images/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/CSS/images/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/CSS/images/favicon_io/favicon-16x16.png">
<link rel="manifest" href="/CSS/images/favicon_io/site.webmanifest">
<link rel="stylesheet" href="CSS/style.css">
<title>Tic-Tac-Doh!</title>
</head>
<body>
<div id="overlay-start" class="animated">
<div class="overlay-text">
<h1>Tic - Tac - Doh!</h1>
<h2>A Simpson-themed game</h2>
<img src="./CSS/images/donut.png" alt="Picture of a donut" height="400px" width="auto">
<p>Click anywhere to start</p>
</div class="overlay-text">
</div>
<header>
<h1>Tic - Tac - Doh!</h1>
</header>
<main>
<div class="player left">
<h3>P1</h3>
<div class="player-one-results score-field"></div>
<p class="player-turn-text p1-text">It's player one's turn</p>
</div>
<div class="hair">
<div class="hair-top">
<h3>Draw</h3>
<div class="draw-results score-field"></div>
</div>
<div class="hair-body board-game">
<div data-box="1" class="row1 col1 x1 box"></div>
<div data-box="2" class="row1 col2 box"></div>
<div data-box="3" class="row1 col3 y1 box"></div>
<div data-box="4" class="row2 col1 box"></div>
<div data-box="5" class="row2 col2 x1 y1 box"></div>
<div data-box="6" class="row2 col3 box"></div>
<div data-box="7" class="row3 col1 y1 box"></div>
<div data-box="8" class="row3 col2 box"></div>
<div data-box="9" class="row3 col3 x1 box"></div>
</div>
<div class="hair-bottom">
<button class="btn reset-btn">reset</button>
<div class="forehead">
<div class="eyes left-eye ">
<div class="pupil"></div>
</div>
<div class="eyes ">
<div class="pupil"></div>
</div>
</div>
</div>
</div>
<div class="player right">
<h3 class="p2-type">P2</h3>
<div class="player-two-results score-field"></div>
<div><p class="player-turn-text p2-text hide">It's player two's turn</p></div>
<div class="modifiers">
<button class="btn human-btn">Human</button>
<button class="btn easy-AI-btn">Easy AI</button>
<button class="btn hard-AI-btn">Hard AI</button>
</div>
</div>
<div id="winning-overlay" class="animated zoomInUp">
<div class="overlay-text">
<h1 class="winning-text"></h1>
<img src="./CSS/images/homer-strangle.png" alt="Homer strangling bart hatefully" width="500px" height="auto" class="image-win">
</div>
</div>
</main>
<script src="main2.js"></script>
</body>
</html>