-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadoção.html
141 lines (95 loc) · 5.05 KB
/
adoção.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html>
<head>
<title>AUMIGOS</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./assets/css/adotar.css">
</head>
<body>
<header>
<h1>Adoção de Animais</h1>
</header>
<main> <!-- Conteúdo da página -->
<section>
<div class="img">
<h2>Animais Disponíveis para Adoção</h2>
<ul>
<li>
<h3>Cachorro</h3>
<p>Idade: 2 anos</p>
<button>Adotar</button>
<img src="https://s3.amazonaws.com/petz-cdm-stg/f420ca6f-17f2-4624-bbf7-f34e0d029bd0.jpeg" width="200" alt="Cachorro">
<br>
</li>
<li>
<h3>Gato</h3>
<p>Idade: 1 ano</p>
<button>Adotar</button>
<img src="https://s3.amazonaws.com/petz-cdm-stg/707afeed-9643-4e35-ba4f-caccf7f45c49.jpeg" width="200" alt="Gato">
<br>
</li>
<li>
<h3>Coelho</h3>
<p>Idade: 6 meses</p>
<button>Adotar</button>
<img src="https://blog.stoodi.com.br/wp-content/uploads/2019/02/coelho.jpg" width="200" alt="Coelho">
<br>
</li>
</ul>
</div>
</section>
<section>
<div class="box">
<form action="">
<fieldset>
<legend><b>Formulario de Adoção</b></legend>
<br>
<div class="inputBox">
<label for="nome" class="labelInput" >Nome completo</label> <br>
<input type="text" name="nome" id="nome" placeholder="Nome Completo" class="inputUser" required>
</div>
<br><br>
<div class="inputBox">
<input type="text" name="email" id="email" placeholder="E-mail" class="inputUser" required>
<label for="email" class="labelInput" >Email</label>
</div>
<br><br>
<div class="inputBox">
<input type="tel" name="telefone" id="telefone" placeholder="telefone" one class="inputUser" required>
<label for="telefone" class="labelInput" >telefone</label>
</div>
<br><br>
<p>Sexo:</p>
<input type="radio" id="feminino" name="genero" value="feminino" required>
<label for="feminino">Feminino</label>
<input type="radio" id="masculino" name="genero" value="Masculino" required>
<label for="Masculino">Masculino</label>
<input type="radio" id="outro" name="genero" value="Outro" required>
<label for="Outro">Outro</label>
<br><br>
<div class="inputBox">
<input type="text" name="cidade" id="cidade" placeholder="cidade" class="inputUser" required>
<label for="cidade" class="labelInput" >Cidade</label>
</div>
<br><br>
<div class="inputBox">
<input type="text" name="Estado" id="estado" placeholder="Estado" class="inputUser" required>
<label for="estado" class="labelInput" >Estado</label>
</div>
<br><br>
<div class="inputBox">
<input type="text" name="Endereço" id="Endereço" placeholder="Endereço" class="inputUser" required>
<label for="Endereço" class="labelInput" >Endereço</label>
</div>
<br><br>
<input type="submit" name="submit" id="submit" >
</fieldset>
</form>
</div>
</main>
<footer>
<p>© 2023 Adoção de Animais</p>
</footer>
</body>
</html>