-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1019 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css" />
<title>API ViaCEP</title>
</head>
<body>
<form action="">
<h1>Verificar CEP</h1>
<p>
Após digitar um CEP válido e sair do campo, o endereço será preenchido automaticamente.
</p>
<label for="inputCep">CEP (somente dígitos):</label>
<input type="text" name="cep" id="inputCep" />
<label for="inputEndereco">Endereço:</label>
<input type="text" name="endereco" id="inputEndereco" />
<label for="inputBairro">Bairro:</label>
<input type="text" name="bairro" id="inputBairro" />
<label for="inputCidade">Cidade:</label>
<input type="text" name="cidade" id="inputCidade" />
<label for="inputUf">UF:</label>
<input type="text" name="uf" id="inputUf" />
</form>
</body>
<script src="./js/app.js"></script>
</html>