-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (34 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./media/tic-tac-toe.png" type="image/x-icon">
<title>Tic Tac Toe - xtechilad</title>
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<h1 class="match-update" id="match-update"></h1>
<button class="reset-button" id="reset-button">
<img src="./media/refresh-arrow.png" alt="">
</button>
<main>
<div class="board-container">
<div class="box box-1" id="box-1"></div>
<div class="box box-2" id="box-2"></div>
<div class="box box-3" id="box-3"></div>
<div class="box box-3" id="box-4"></div>
<div class="box box-5" id="box-5"></div>
<div class="box box-6" id="box-6"></div>
<div class="box box-7" id="box-7"></div>
<div class="box box-8" id="box-8"></div>
<div class="box box-9" id="box-9"></div>
</div>
</main>
<text class="credits">
Developed with 🤍 by <a href="https://github.com/priyanshusharma0326" target="_blank">xtechilad</a>
</text>
<script src="./script.js"></script>
</body>
</html>