-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
42 lines (42 loc) · 1.92 KB
/
index.php
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
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<title>Contato</title>
</head>
<body>
<div class="container">
<form>
<div class="form-group">
<label for="name">Nome Completo</label>
<input type="text" class="form-control" id="name" placeholder="Nome e Sobrenome">
</div>
<div class="form-group">
<label for="email">Endereço de E-mail</label>
<input type="email" class="form-control" id="email" placeholder="Digite seu e-mail">
</div>
<div class="form-group">
<label for="phone">Telefone</label>
<input type="text" class="form-control" id="phone" placeholder="(XX) XXXXX-XXXX">
</div>
<div class="form-group">
<label for="city">Cidade</label>
<select class="form-control" id="city">
<option>Selecione a cidade</option>
</select>
</div>
<div class="form-group">
<label for="informations">Informações</label>
<textarea class="form-control" id="informations" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-primary">Enviar</button>
</form>
</div>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
</body>
</html>