forked from Lauraa23/Carnival-Equipo3
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 1.04 KB
/
index.html
File metadata and controls
26 lines (25 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Piedra Papel o Tijera</title>
<link rel="icon" href="../Recursos/Tijera.svg" />
<link rel="stylesheet" href="./css/index.css" />
</head>
<body>
<img src="./Recursos/Garabato(1).svg" alt="Garabato" id="topLeftImage" />
<img src="./Recursos/Spark.svg" alt="Estrellita" id="estrellita" />
<img src="./Recursos/Spark.svg" alt="Estrellita" id="estrellita2" />
<div class="content">
<img src="../Recursos/Logo.svg" alt="Imagen del logo" id="logoImage" />
<div class="buttons">
<button id="playButton" class="menuButton">Jugar</button>
<button id="ruleButton" class="menuButton">Instrucciones</button>
</div>
</div>
<img src="./Recursos/Spark.svg" alt="Estrellita" id="estrellita1" />
<img src="./Recursos/Star 2.svg" alt="Estrella" id="bottomRightImage" />
<script src="./js/buttons-events.js" type="module"></script>
</body>
</html>