-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (44 loc) · 2.38 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
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Memotest</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="stylesheet" href="src/index.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="node_modules/bootstrap-icons/font/bootstrap-icons.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poor+Story&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
</head>
<body>
<div id="container-start">
<div class="container-buttons d-flex align-items-center justify-content-center">
<div class="container container-results text-center" data-cy="results">
<strong id="results-total-rounds" data-cy="turn-number"></strong>
<strong id="results-total-points" data-cy="points"></strong>
</div>
<button id="button-start" data-cy="btn-start">¡Jugar !</button>
<div class="container-difficulty">
<h1>Dificultad</h1>
<input type="radio" class="btn-check" id="easy" name="difficulty" autocomplete="off" value="4">
<label class="btn btn-primary btn-difficulty" for="easy" data-cy="btn-easy">Facil</label>
<input type="radio" class="btn-check" id="normal" name="difficulty" checked autocomplete="off" value="8">
<label class="btn btn-primary btn-difficulty" for="normal" data-cy="btn-normal">Normal</label>
<input type="radio" class="btn-check" id="hard" name="difficulty" autocomplete="off" value="12">
<label class="btn btn-primary btn-difficulty" for="hard" data-cy="btn-hard">Dificil</label>
</div>
</div>
</div>
<div class="container-fluid text-center" id="board" data-cy="board">
<div class="row">
</div>
</div>
<script src="src/index.js" type="text/javascript"></script>
</body>
</html>