-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
129 lines (105 loc) · 4.69 KB
/
form.html
File metadata and controls
129 lines (105 loc) · 4.69 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/form.css">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="icon" href="./assets/images/lgoo2.jpg">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Volocopter</title>
</head>
<body>
<header>
<nav>
<ul class='nav-bar'>
<li class='logo'><a href='#'>
<a href="./index.html">
<img src='./assets/images/Logo_Volocopter.png'/>
</a>
</a>
</li>
<input type='checkbox' id='check' />
<span class="menu">
<li><a href="./index.html">SOBRE</a></li>
<li><a href="./solucoes.html">SOLUÇÕES</a></li>
<li><a href="./faq.html">FAQ</a></li>
<a href="./login.html" target="_blank"><input class="btn-login-menu" type="button" value="LOGIN"></a>
<label for="check" class="close-menu"><i class="fas fa-times"></i></label>
</span>
<label for="check" class="open-menu"><i class="fas fa-bars"></i></label>
</ul>
</nav>
</header>
<div class="container_form">
<div class="form_box">
<h2 class="title">Envie sua mensagem</h2>
<form action="" method="get">
<input type="text" name="name" placeholder="Seu nome" required>
<input type="email" name="email" placeholder="Email" required>
<input type="text" name="subject" placeholder="Assunto" required>
<textarea name="message" placeholder="Digite sua mensagem" required></textarea>
<button type="submit">Enviar mensagem</button>
</form>
</div>
</div>
<footer>
<div id="footer_content">
<div id="footer_contacts">
<h1>Redes Socias</h1>
<p>Acompanhe nossas redes sociais</p>
<div id="footer_social_media">
<a href="#" class="footer-link" id="instagram">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="#" class="footer-link" id="facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a href="#" class="footer-link" id="twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="#" class="footer-link" id="tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
<a href="#" class="footer-link" id="linkedin">
<i class="fa-brands fa-linkedin-in" style="color: #ffffff;"></i>
</a>
<a href="#" class="footer-link" id="youtube">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
<ul class="footer-list">
<li>
<h3>Site</h3>
</li>
<li>
<a href="./index.html" class="footer-link">Sobre</a>
</li>
<li>
<a href="./solucoes.html" class="footer-link">Soluções</a>
</li>
<li>
<a href="./faq.html" class="footer-link">FAQ</a>
</li>
</ul>
<ul class="footer-list">
<li>
<h3>Empresa</h3>
</li>
<li>
<a href="./form.html" class="footer-link">Contate-nos</a>
</li>
<li>
<a href="./politicaPrivacidade.html" class="footer-link">Politica de Privacidade</a>
</li>
</ul>
</div>
<div id="footer_copyright">
Direitos autorais © 2023 <a href="./index.html">Volocopter</a>. Todos os direitos reservados.
</div>
</footer>
</body>
</html>