-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
38 lines (33 loc) · 1.3 KB
/
menu.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
<!DOCTYPE html>
<html lang = "es">
<head>
<meta charset = "UTF - 8">
<meta name="viewport" content="width = device-width">
<title>GuessOrLose</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="menu-style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<main>
<section>
<img class="logo" src="imagenes/Logoblanco.png" ></img>
</section>
<section class="plataformas">
<h1 class="pregunta">¿En que plataforma estás?</h1>
<ul class="productos">
<a href="gamepc.html"><li>
<h2>Computadora</h2>
<img class="dispositivo" src="imagenes/computadora.png">
<p class="plataformas-clic">¡Haz clic aquí!</p>
</li></a>
<a href="gamemovil.html"><li>
<h2>Celular</h2>
<img class="dispositivo" src="imagenes/celular.png">
<p class="plataformas-clic">¡Haz clic aquí!</p>
</li></a>
</ul>
</section>
</main>
</body>
</html>