-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
101 lines (83 loc) · 2.84 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trilha HTML</title>
<style>
.row {
margin: 5px;
}
label {
width: 100px;
text-align: right;
display: inline-block;
padding: 5px;
}
fieldset {
border-radius: 5px;
border-color: blue;
}
maps {
display: flexbox;
}
</style>
</head>
<body>
<h1>Formulário de cadastro</h1>
<fieldset>
<legend>Dados Pessoais</legend>
<div class="row">
<label>Nome:</label><input type="text" />
<label>E-mail:</label><input type="text" />
</div>
<div class="row">
<label>Profissão:</label><input type="text" />
<label>Empresa:</label><input type="text" />
</div>
</fieldset>
<fieldset>
<legend>Endereço</legend>
<div class="row">
<label>Endereço:</label><input type="text" />
<label>Número:</label><input style="width: 30px;" type="text" width="10" />
</div>
<div class="row">
<label>Bairro:</label><input type="text" />
</div>
<div class="row">
<label>Cidade/UF:</label><input type="text" />
</div>
</fieldset>
<fieldset>
<legend>Informações de contato</legend>
<div class="row">
<label>Celular:</label><input type="text" />
<label>Whatsapp:</label><input type="text" />
</div>
<div class="row">
<label>Linkedin:</label><input type="text" />
<label>Github:</label><input type="text" />
</div>
</fieldset>
<div class="row">
<button type="reset">
Limpar
</button>
<button type="submit">
Enviar formulário
</button><br>
</div>
<div id="maps">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d126418.25742820234!2d-35.016618215593844!3d-8.04313301038037!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x7ab196f94e5408b%3A0xe5800ef782bde3a6!2sRecife%2C%20PE!5e0!3m2!1spt-BR!2sbr!4v1736272536229!5m2!1spt-BR!2sbr"
width="560" height="315" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/CrBO_Z5ao4Q?si=LbZ-5dwaJmOT_cxz"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</body>
</html>