-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.42 KB
/
Copy pathindex.html
File metadata and controls
43 lines (43 loc) · 1.42 KB
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
<html lang="pl">
<head>
<meta charset="utf8">
<title>ToDo App</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div id="container">
<header>
<h1>Memory Game</h1>
<p>Created by Bartlomiej Plaza</p>
</header>
<div id="game-wrapper">
<div id="start-game" class="ui-panel">
<div class="form-group text-center">
<label for="level"><h3>Wybierz poziom:</h3></label>
<select class="form-control" id="level">
<option value="0">Beginner</option>
<option value="1">Intermediate</option>
<option value="2">Advance</option>
</select>
</div>
<div class="form-group text-center">
<button id="start-button" class="btn btn-primary btn-lg">Start Game</button>
</div>
</div>
<div id="end-game" class="ui-panel text-center">
<h3>Wygrałes w <span id>0</span> rundach</h3>
<p> Potrafisz szybciej? ;) </p>
<button id="restart-button" class="btn btn-primary btn-lg">Zagraj ponownie</button>
</div>
<div id="cards-wrapper">
</div>
</div>
<div id="rounds-counter" class="text-right">Rounds: <span>0</span></div>
<footer>
© Created by Bartlomiej Plaza
</footer>
</div>
<script src="main.js"></script>
</body>
</html>