-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (50 loc) · 1.72 KB
/
index.html
File metadata and controls
56 lines (50 loc) · 1.72 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gatitos aleatorios</title>
<link rel="stylesheet" href="./styles.css" type="text/css">
</head>
<body>
<h1 id="nombre-app">Michis App</h1>
<span id="error"></span>
<section class = "michis_aleatorios">
<h2 class=" nombre-seccion">Gatitos aleatorios</h2>
<article >
<img id="img1" alt="Foto Gatito aleatorio">
<button id ="btn1" >Guardar en Favoritos</button>
</article>
<article>
<img id="img2" alt="Foto Gatito aleatorio">
<button id ="btn2" >Guardar en Favoritos</button>
</article>
</section>
<button type="button" id="otro_gatito">Otro Gatito</button>
<div class="centrado">
<div class="linea"></div>
</div>
<section id="uploadingMichi">
<h2 class="nombre-seccion">Sube la foto de tu michi</h2>
<form id="uploadingForm">
<input id="file" type="file" name="file" />
<button type="button" onclick="uploadMichiPhoto()">Subir Foto</button>
</form>
</section>
<div class="centrado">
<div class="linea"></div>
</div>
<section id="favoritesMichis">
<h2 class="nombre-seccion">Gatitos Favoritos</h2>
<!--
<article>
<img id="img3" width = "150px" alt="Foto Gatito favorito">
<button >Quitar de Favoritos</button>
</article>
-->
</section>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="./main.js"></script>
</body>
</html>