-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.22 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
<!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>Memory-Game</title>
<link rel="stylesheet" href="./css/master.css" />
<link rel="stylesheet" href="./css/all.min.css" />
<link rel="stylesheet" href="../google.fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth,wght.ttf" />
<link rel="stylesheet" href="../google.fonts/Teko/Teko-Bold.ttf" />
<link rel="stylesheet" href="../google.fonts/Teko/Teko-Light.ttf" />
<link rel="stylesheet" href="../google.fonts/Teko/Teko-SemiBold.ttf" />
<link rel="stylesheet" href="../google.fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf" />
<link rel="icon" href="./img/icon2.jpg" />
</head>
<body>
<div id="root" tabindex="0">
<div class="uper-layer"><span>start the Game</span></div>
<div class="game-info">
<div class="name">Hello: <span></span></div>
<div class="timer">
<span id="muinet"></span>:<span id="secnd">00</span>
</div>
<div class="score">wrong trys:<span></span></div>
</div>
<div class="cards"></div>
</div>
<script src="./js/main.js"></script>
</body>
</html>