-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (31 loc) · 1.64 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
<!DOCTYPE html>
<html lang="pt-br">
<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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,400;1,500&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="./src/imagens/favicon.png">
<link rel="stylesheet" href="./src/css/index.css">
<link rel="stylesheet" href="./src/css/responsivo.css">
<title>Formulário de contato</title>
</head>
<body>
<div class="principal-container">
<div class="conteudo">
<h1>Formulário de contato</h1>
<label class="nick" for="nome">Nome</label>
<input class="inputs" style="display: block;" type="name" name="nome" placeholder="Digite um nome válido...">
<label class="nick" for="email">Email</label>
<input class="inputs" style="display: block;" type="email" name="email" placeholder="Digite um e-mail válido...">
<label class="nick" for="celular">Celular</label>
<input class="inputs" style="display: block;" name="celular" placeholder="Digite um número válido...">
<label class="nick" for="mensagem">Mensagem</label>
<textarea class="inputs" style="display: block;" name="mensagem" cols="30" rows="10"></textarea>
<button class="botao">Enviar</button>
</div>
</div>
</body>
</html>