-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Match Game</title>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<div class="game">
<div class="grid"></div>
<div class="board">
<h3>Score</h3>
<h1 id="score"></h1>
</div>
<div class="board time">
<h3>Time</h3>
<h1 id="time">0:0</h1>
</div>
</div>
<footer>
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License"
style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png" /></a><br />This
work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative
Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
</footer>
<script src="js/app.js" charset="utf-8"></script>
</body>
</html>