-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./animista.css" />
<link rel="stylesheet" href="./styles.css" />
<title>👸 Tic Tac Toe Game 🍄</title>
</head>
<body>
<div id="board">
<h1>Tic Tac Toe</h1>
<h2>👸 Super Mario Edition 🍄</h2>
<div class="row">
<div class="highlight top left"></div>
<div class="highlight top center"></div>
<div class="highlight top right"></div>
</div>
<div class="row">
<div class="highlight middle left"></div>
<div class="highlight middle center"></div>
<div class="highlight middle right"></div>
</div>
<div class="row">
<div class="highlight bottom left"></div>
<div class="highlight bottom center"></div>
<div class="highlight bottom right"></div>
</div>
<div class="row">
<h2 id="winner" class="scale-up-bottom"></h2>
</div>
<div id="btn"></div>
</div>
<audio id="mario" autoplay>
<source src="./supermario.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
<script src="./app.js"></script>
</body>
</html>