-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
89 lines (84 loc) · 2.93 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<link rel="icon" href="./img/favicon.png" type="image/x-icon" />
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/main.css" />
<title>AdaKitten</title>
</head>
<body>
<header class="header">
<section class="logo">
<img class="img" src="./img/favicon.png" alt="Logo de Adacats" />
<h1>AdaKitten</h1>
<nav class="menu-nav">
<ul class="menu">
<li class="item">
<span class="fas fa-plus-circle js-btn-add"> </span>
</li>
</ul>
</nav>
</section>
</header>
<main>
<section class="new-form collapsed js-new-form">
<h2 class="title">¿Agregamos un nuevo gatito a Adalab?</h2>
<form class="form">
<input
class="input js-imgInput"
type="text"
placeholder="Url de la foto"
required
/>
<input class="input js-nameInput" type="text" placeholder="Nombre" required />
<input class="input js-raceInput" type="text" placeholder="Raza" />
<input class="input js-descInput" type="text" placeholder="Descripción" required />
<label class=""></label>
<button class="button js-addbutton">Añadir</button>
<button class="button-cancel">Cancelar</button>
</form>
</section>
<section class="about-us">
<h1 class="title">AdaKitten</h1>
<h2 class="subtitle">Los gatos más molones de Adalab</h2>
</section>
<section class="search">
<h2 class="title">Filtrar / Buscar</h2>
<form class="form">
<input class="input js_in_search_desc " type="text" placeholder="Descripción" />
<input
class="input"
type="select"
name="raza"
placeholder="Raza"
id="raza"
/>
<button class="button js_button-search">Buscar</button>
</form>
</section>
<section class="data">
<ul class="list js-list">
</ul>
</section>
</main>
<footer class="footer">
<h3 class="subtittle">© Adalab 2022</h3>
</footer>
<script src="./javascript/main.js" type="text/javascript"></script>
</body>
</html>