-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (37 loc) · 1.36 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
<!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">
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="./style.css">
<script src="./javascript.js" defer></script>
<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=Red+Hat+Mono:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header><h1>Tic-Tac-Toe</h1></header>
<main></main>
<div id="info">
<div id="difficultyDiv">
<h2>Difficulty:</h2>
<input type="radio" id="easy" name="difficulty" value="easy" checked required>
<label for="easy">Easy</label><br>
<input type="radio" id="hard" name="difficulty" value="hard">
<label for="hard">Hard</label>
</div>
<div id="resetDiv">
<span id="result">Result</span>
<button id="reset">Play Again</button>
</div>
<div id="scoreDiv">
<h2>Score:</h2>
Human: 0<br>
Computer: 0
</div>
</div>
<footer>By Steph Henson | <a href="https://github.com/s-hens/tic-tac-toe">GitHub</a></footer>
</body>
</html>