-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (42 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.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=Julee&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/7701dbaa82.js" crossorigin="anonymous"></script>
<title>TicTacToe</title>
</head>
<body>
<div class="background">
<div class="start">
<h1 class="start-text">Click here to begin: <i class="fa-solid fa-play" id="play_button"></i></h1>
</div>
<div class="intro">
<p>Welcome to Ashton's impossible <span style="color:red">Tic</span>-<span style="color:blue">Tac</span>-<span style="color:yellow">Toe</span></p>
</div>
<div class="player-score">
<h1>Player: 0</h1>
</div>
<div class="robot-score">
<h1>Robot: 0</h1>
</div>
<div class="container">
<div class="cell" id="cell1"></div>
<div class="cell" id="cell2"></div>
<div class="cell" id="cell3"></div>
<div class="cell" id="cell4"></div>
<div class="cell" id="cell5"></div>
<div class="cell" id="cell6"></div>
<div class="cell" id="cell7"></div>
<div class="cell" id="cell8"></div>
<div class="cell" id="cell9"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>