-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (64 loc) · 2 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
<!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">
<link rel="shortcut icon" href="https://i.pinimg.com/474x/2d/53/cf/2d53cf1612a91f65479a17bbd52e5683.jpg">
<link rel="stylesheet" href="style.css">
<title>Adoption Pet</title>
</head>
<body>
<header>
<div>
<h3>Nome da empresa</h3>
<p>de adoção de pet</p>
</div>
<nav>
<a href="">Home</a>
<a href="./sobre.html" target="_blank">Sobre</a>
<a href="./contato.html" target="_blank">Contato</a>
</nav>
</header>
<main>
<aside>
<section id="selects">
<select name="petsCategory" id="category">
<option value="category">Categoria</option>
</select>
<select name="petsName" id="name" disabled>
<option value="name">Nome</option>
</select>
<select name="petsBreed" id="breed" disabled>
<option value="breed">Raça</option>
</select>
<select name="petsColor" id="color" disabled>
<option value="color">Cor</option>
</select>
<select name="petsSize" id="size" disabled>
<option value="size">Porte</option>
</select>
<select name="petsTemperament" id="temperament" disabled>
<option value="temperament">Temperamento</option>
</select>
</section>
<section id="info">
<div id="pictureSelected"><img></div>
<div id="nameInfo"></div>
<div id="birthInfo"></div>
<div id="breedInfo"></div>
<div id="colorInfo"></div>
<div id="sizeInfo"></div>
<div id="temperamentInfo"></div>
</section>
<form action="" method="get"></form>
</aside>
<section id="pictures">
<h4>Clique na foto para detalhes do pet</h4>
<div id="images"></div>
</section>
</main>
<script src="./data.js"></script>
<script src="./script.js"></script>
</body>
</html>