-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
42 lines (42 loc) · 1.49 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Consulta CEP</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>Consultando CEP</h1>
<form>
<div class="form-group">
<label for="cep">CEP</label>
<input type="text" class="form-control" maxlength="9" id="cep">
<small>00000-000</small>
</div>
<div class="form-group">
<label for="logradouro">Logradouro</label>
<input type="text" class="form-control" id="logradouro">
<small>Rua.</small>
</div>
<div class="form-group">
<label for="bairro">Bairro</label>
<input type="text" class="form-control" id="bairro">
<small>Bairro</small>
</div>
<div class="form-group">
<label for="localidade">Localidade</label>
<input type="text" class="form-control" id="localidade">
<small>Cidade</small>
</div>
<div class="form-group">
<label for="uf">UF</label>
<input type="text" class="form-control" id="uf">
<small>Estado</small>
</div>
</form>
</div>
<script src="src/js/main.js"></script>
</body>
</html>