-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
21 lines (20 loc) · 861 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Branded Memory Game</title>
<link rel="stylesheet" href="style.css"></link>
<script src="app.js" charset="UTF-8"></script>
</head>
<body>
<div class="yellow-block"></div>
<h1>¿Listo para jugar?</h1>
<h2>Pon a prueba tu memoria con este nuevo juego. Haz click en las cartas hasta encontrar las que son iguales. Cada par encontrado suma un punto a tu puntaje. Cuando logres 6 puntos habrás completado el juego.</h2>
<div class="points-section"><h3>PUNTAJE: <span id="result"></span></h3>
</div>
<div class="grid">
</div>
<footer><p class="footer-text">Desarrollado por <a href="https://www.linkedin.com/in/gbotto/">Glenda Botto</a> - 2020</p></footer>
</body>
</html>