-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (64 loc) · 1.6 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Que animal posso adotar?</title>
<link rel="stylesheet" href="./utils/styles.css" />
<link rel="shortcut icon" href="./asests/logo.png" type="image/x-icon" />
</head>
<body>
<div class="container">
<div id="meuModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<div class="modal-imagem">
<img width="180" src="" alt="" />
</div>
<div class="nome">
<span></span>
</div>
<div class="descricao">
<p></p>
</div>
<div class="adotavel">
<label for="">Posso adotar?</label>
<p></p>
</div>
<div class="adotavel-motivo">
<p></p>
</div>
</div>
</div>
<header>
<div class="logo">Que animal posso adotar?</div>
<div class="filtro">
<input
type="text"
id="input-filtrar"
autocomplete="off"
placeholder="Pesquise o nome de um animal"
autofocus
/>
</div>
</header>
<main>
<div class="lista-animais" id="lista-animais"></div>
</main>
<footer>
Feito com 💕 por
<a href="https://github.com/CrimsonSunrise" target="_blank"
>Crimson Sunrise</a
>
especialmente para a
<a
href="https://www.alura.com.br/imersao-dev-google-gemini"
target="_blank"
>Imersão Alura e Google Gemini</a
>.
</footer>
</div>
<script type="module" src="./utils/main.js"></script>
<script type="module" src="./utils/dados.js"></script>
</body>
</html>