-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
34 lines (32 loc) · 1.19 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Hacking Morpion</title>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lobster">
<link rel="stylesheet" type="text/css" href="./style.css" />
</head>
<body>
<h1 class="title">The Hacking Morpion</h1>
<section class="game-grid">
<div class="cell" id="A1"></div>
<div class="cell" id="A2"></div>
<div class="cell" id="A3"></div>
<div class="cell" id="B1"></div>
<div class="cell" id="B2"></div>
<div class="cell" id="B3"></div>
<div class="cell" id="C1"></div>
<div class="cell" id="C2"></div>
<div class="cell" id="C3"></div>
</section>
<section class="actions">
<a class="replay-button" href="./index.html">Rejouer</a>
</section>
<div class="end-message" id="end-message"></div>
<script src="./morpion.js"></script>
<script>
const morpion = new Morpion();
</script>
</body>
</html>