-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.32 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulário</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<style>
body,
html {
height: 100%;
}
body {
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<div class="container d-flex justify-content-center align-content-center">
<div class="col-md-6">
<h1 class="h1 text-center">Formulário</h1>
<form action="" class="border border-success rounded p-4">
<label for="nome">Nome: </label>
<input class="form-control mb-2" type="text" id="nome">
<label for="email">E-mail: </label>
<input class="form-control mb-2" type="email" id="email">
<label for="telefone">Telefone: </label>
<input class="form-control mb-3" type="tel">
<div class="d-grid">
<button class="btn btn-success">
Enviar
</button>
</div>
</form>
</div>
</div>
</body>
</html>