-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.51 KB
/
index.html
File metadata and controls
46 lines (43 loc) · 1.51 KB
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
<!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="styles.css">
<script src="js-file.js" defer></script>
<title>Tic Tac Toe</title>
</head>
<body>
<div class="header-class">
<h1>Tic Tac Toe</h1>
<button class="button start"><span>1 ON 1</span></button>
<button class="button o-first"><span>PLAYER O GOES FIRST</span></button>
<div class="button dropdown">
<button class="button difficulty dropbtn"><span>DIFFICULTY</span></button>
<div class="dropdown-content">
<button class="drop easy">Easy</button>
<button class="drop medium">Medium</button>
<button class="drop impossible">Impossible</button>
</div>
</div>
<button class="button ai-first"><span>AI GOES FIRST</span></button>
<button class="button reset"><span>RESET SCORE</span></button>
</div>
<div class="thing">
<div class="content">
<div class="grid">
</div>
<div class="scoreboard">
<span class="xScore"></span>
<span class="oScore"></span>
</div>
<div class="end-of-game">
</div>
</div>
</div>
<div class="footer">
Developed by Ishaan Sharma
</div>
</body>
</html>