-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (28 loc) · 870 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API CAT</title>
</head>
<body>
<h1>InstantCAT App</h1>
<span id="error"></span>
<section id="gatosAleatorios">
<h2>Gatitos aleatorios</h2>
<article>
<img id="img1" width="150" alt="Foto de gatito aleatorio">
<button id="btn1">Guardar en favoritos</button>
</article>
<article>
<img id="img2" width="150" alt="Foto de gatito aleatorio">
<button id="btn2">Guardar en favoritos</button>
</article>
<button onclick="generarGatosRandom()">Recargar</button>
</section>
<section id="gatosFavoritos">
<h2>Gatitos favoritos</h2>
</section>
<script src="./main.js"></script>
</body>
</html>