-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
48 lines (48 loc) · 2.13 KB
/
contato.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
<!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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="container">
<form>
<div class="row">
<div class="col-4">
<div class="mb-3">
<input placeholder="seu nome" type="text" class="form-control" id="example" aria-describedby="emailHelp">
</div>
</div>
<div class="col-4">
<div class="mb-3">
<input placeholder="seu melhor email" type="email" class="form-control" id="exampleInputEmail1">
</div>
</div>
<div class="col-4">
<select class="form-select" aria-label="Default select example">
<option selected>Melhor horário pra contato</option>
<option value="1">Manhã (08h-12h)</option>
<option value="2">Tarde (13h-18h)</option>
<option value="3">Noite (19h-22h)</option>
<option value="3">Qualquer horário (08h-22h)</option>
</select>
</div>
</div>
<div class="row">
<div class="form-floating">
<textarea class="form-control" placeholder="escreva sua mensagem aqui" id="floatingTextarea2" style="height: 100px"></textarea>
</div>
</form>
<button type="submit" class="btn btn-primary mt-3">Enviar</button>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
crossorigin="anonymous"></script>
</html>