-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (29 loc) · 1007 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Juego: Qué Fruta Encaja?</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<h1 class="titulo"> Qué Fruta Encaja?</h1>
<section id="arbol">
<div><canvas id="lienzo" width="300" height="300" style="border:1px solid #d3d3d3;"></canvas></div>
</section>
<section id="frutas">
<h2>Selecciona la fruta correcta</h2>
<p><button id="botonManzana">Manzana 🍎</button></p>
<p><button id="botonNaranja">Naranja 🍊</button></p>
<p><button id="botonUvas">Uvas 🍇</button></p>
<p><button id="botonSandia">Sandia 🍉</button></p>
<p><button id="botonBanana">Banana 🍌</button></p>
</section>
<section id="mensajes">
<p>Escogiste manzana y la silueta en el arbol era manzana - Ganaste!!</p>
</section>
<section id="reiniciar">
<button>reiniciar</button>
</section>
<script src="./queFrutaEncaja.js">
</script>
</body>
</html>