-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" type="image/x-icon" href="./build/img/title_logo.png" />
<script src="./node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="./node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="build/js/main.js"></script>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="build/css/main.css">
<title>Marvel Pairs</title>
</head>
<body>
<main class="main-container">
<div id='start-screen' class="main-block">
<h1>Marvel Pairs</h1>
<span>Press Start to play</span>
</div>
<div id='level-choose' class="level-block">
<span class="difficult-title">Choose your difficult level</span>
<ul class="level-list">
<li level-id="4">Kids level</li><br>
<li level-id="6">Easy</li><br>
<li level-id="8">Medium</li><br>
<li level-id="10">Hard</li><br>
</ul>
</div>
<span id="timer-block">
<p>Time:</p>
<p id='timer'>0:00</p>
</span>
<table id='play-field'></table>
</main>
</body>
</html>