-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1.18 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image" href="./images/favicon.png" />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather:wght@900&family=Montserrat:wght@400;600&family=Open+Sans:wght@400;600&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="./css/style.css">
<title>¡Memory game!🎉</title>
</head>
<body>
<section class="container">
<h1>
<span>¡</span>
<span>M</span>
<span>E</span>
<span>M</span>
<span>O</span>
<span>R</span>
<span>Y</span>
<br>
<span>G</span>
<span>A</span>
<span>M</span>
<span>E</span>
<span>!</span>
</h1>
</section>
<p class="text-under-title">Objetivo del juego: Levanta las cartas haciendo click sobre ellas y busca las parejas.</p>
<div class="game"></div>
<script type="text/javascript" src="memory.js"></script>
<script src="https://cdn.jsdelivr.net/npm/tsparticles-confetti@2.9.3/tsparticles.confetti.bundle.min.js"></script>
</body>
</html>