-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.27 KB
/
Copy pathindex.html
File metadata and controls
37 lines (34 loc) · 1.27 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
<!DOCTYPE html>
<html lang="es">
<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">
<link rel="shortcut icon" href="favicon-perro.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,600;1,900&family=Josefin+Sans:wght@700&family=Lato&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Muestra de perros</title>
</head>
<body>
<div class="content-wrapper">
<section class="welcome-section">
<h1>PERROS</h1>
<p>
Cuantos perros queres ver? (maximo 10)
</p>
<input value="1" type="number" id="input-perros" min="1" max="3">
<figure class="imagecontainer">
</figure>
<button id="boton">MAS PERROS</button>
</section>
<footer class="footer">
Developed with <a target="_blank" href="https://thedogapi.com/">The Dog API</a>
</footer>
</div>
<script src="main.js"></script>
</body>
</html>