-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (62 loc) · 2.44 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GRVTC1WS56"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GRVTC1WS56');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Memory Card Game</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/png" href="img/mushroom.png">
</head>
<body>
<div class="info">
<button class="btn-sound is-playing"></button>
<audio id="theme-song" src="./sounds/smb3-theme.mp3" loop="loop"></audio>
<div class="score">
<div class="turns">Turns: <span>2</span></div>
<div class="attempts">Attempts: <span>0</span></div>
<div class="wins">Wins: <span>0</span></div>
</div>
</div>
<main>
</main>
<div class="success">
<div class="success-icon" data-type="mushroom">
<div class="front"></div>
</div>
<h2 class="success-message">Bien hecho! </h2>
<div class="score" hidden>
<div class="turns">Turnos <span>2</span></div>
<div class="attempts">Intentos <span>0</span></div>
<div class="wins">Ganados <span>0</span></div>
<div class="attempts-overall">Intentos totales <span>0</span></div>
</div>
<div class="match-type-selection">
<p class="match-type-message">Con qué dibus quieres jugar? </p>
<input type="radio" id="family" name="matchType" value="family" onclick="setMatchType(this.value)">
Familia
<input type="radio" id="smb" name="matchType" value="smb" onclick="setMatchType(this.value)">
Super Mario
</div>
<br />
<button class="btn-continue">Continue</button>
</div>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="js/scripts.js"></script>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="/__/firebase/8.8.0/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="/__/firebase/8.8.0/firebase-analytics.js"></script>
<!-- Initialize Firebase -->
<script src="/__/firebase/init.js"></script>
</body>
</html>