-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<title>Divhive</title>
</head>
<body>
<div class="game">
<div class="start">
<p>
Seleccione la dificultad<br><br>
</p>
<div>
<span class="level">
<button id="easy">FÁCIL</button>
<button id="medium">MEDIO</button>
<button id="hard">DIFÍCIL</button>
</span>
</div>
<p>
<br>Las abejas desean polinizar<br>
Ayuda a las abejas a repartir las flores para el polen
</p>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"
integrity="sha512-qZvrmS2ekKPF2mSznTQsxqPgnpkI4DNTlrdUmTzrDgektczlKNRRhy5X5AAOnx5S09ydFYWWNSfcEqDTTHgtNA=="
zcrossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.debug.js"></script>
<script src="js/handler.js"></script>
</body>
</html>