-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 1.85 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
50
51
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="assets/img/favico.JPG" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalabe=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#f00">
<title>Memo Mafiosi</title>
<link rel="stylesheet" href="assets/css/style.css">
<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=Dancing+Script&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1 class="title">Memo Mæfiosi</h1>
<div class="stats">
<div class="chronometer">
<div>
<h3>Time</h3>
<span class="hours">00</span>:<span class="minutes">00</span>:<span class="seconds">00</span>
</div>
</div>
<div class="scoreContainer">
<h3>Score</h3>
<div class="pointsContainer">
<span class="points">0</span>
<div class="pointModal hidden"></div>
</div>
</div>
</div>
</header>
<section class="container">
<div class="modal hidden">
<div class="modalContent">
<h2>You won!</h2>
<p>You have completed the game in <span class="time"></span>.</p>
<p>Your score is <span class="score"></span></p>
</div>
</div>
</section>
<script src="assets/js/script.js"></script>
</body>
</html>