This repository has been archived by the owner on Dec 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (71 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="tic-tac-toe.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet" />
<link rel="icon" type="image/png" href="images/tic-tac-toe-icon.png" />
</head>
<body>
<div class="title-container">
<h1 class="title">Tic Tac Toe</h1>
<img src="images/tic-tac-toe-icon.png" alt="Tic Tac Toe Icon" class="icon" />
</div>
<div class="selection-wrapper">
<select class="difficulty-selection js-difficult-selector">
<option>Select Difficulty</option>
<option>Easy</option>
<option>Medium</option>
<option>Hard</option>
</select>
</div>
<div class="button-wrapper">
<button class="start-game-button js-start-game-button">Start Game</button>
</div>
<div class="board-container-wrapper">
<div class="board-container js-board-container">
<div>
<img class="grey-square" alt="Grey Square" src="images/grey-square.png" />
</div>
<div>
<img class="grey-square" alt="Grey Square" src="images/grey-square.png" />
</div>
<div>
<img class="grey-square" alt="Grey Square" src="images/grey-square.png" />
</div>
<div>
<img class="grey-square" alt="Grey Square" src="images/grey-square.png" />
</div>
<div>
<img class="grey-square" alt="Grey Square" src="images/grey-square.png" />
</div>
<div>
<img class="grey-square" alt="Grey Square" src="images/grey-square.png" />
</div>
<div>
<img class="grey-square" alt="Grey Square" src="images/grey-square.png" />
</div>
<div>
<img class="grey-square" alt="Grey Square" src="images/grey-square.png" />
</div>
<div>
<img class="grey-square" alt="Grey Square" src="images/grey-square.png" />
</div>
</div>
</div>
<p class="game-status js-game-status"></p>
<div class="credit-container">
<img src="images/flaticon-icon.png" alt="Flaticon Icon" class="flaticon-icon" />
<a href="https://www.flaticon.com/free-icons/tic-tac-toe" title="tic tac toe icons" class="credits">
Tic tac toe icons created by Vectoricons - Flaticon
</a>
</div>
</body>
<script src="tic-tac-toe.js"></script>
</html>