-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (36 loc) · 1.53 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
<meta name="description" content="Play noughts and crosses online for free!">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Play noughts and crosses online</title>
<meta name="description" content="Play noughts and crosses online for free!">
<link rel="stylesheet" href="./css/tic.css">
</head>
<body>
<div class="container">
<header>
<nav></nav>
<h1>Noughts & Crosses</h1>
<p>Player 1 = x</p>
<p>Player 2 = o</p>
</header>
<div class="board">
<div class="board-square" id="1"></div>
<div class="board-square" id="2"></div>
<div class="board-square" id="3"></div>
<div class="board-square" id="4"></div>
<div class="board-square" id="5"></div>
<div class="board-square" id="6"></div>
<div class="board-square" id="7"></div>
<div class="board-square" id="8"></div>
<div class="board-square" id="9"></div>
<img class="corgi" style="position:absolute;" src="https://cdn.dribbble.com/users/664063/screenshots/2435276/media/0129ff529e6c7eb9c3506a5a86ba1b60.gif" alt="leaping corgi">
</div>
<button class="reset">Reset</button>
</div>
<script src="./js/jquery.js"></script>
<script src="./js/tic.js"></script>
</body>
</html>