-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendereço.html
65 lines (63 loc) · 3.2 KB
/
endereço.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Materialize</title>
<link rel="icon" href="./fotos/favicon.ico">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header class="header">
<nav class="nav-bar">
<a href="/home.html">
<img class="nav-logo" src="./fotos/LogoSample_ByTailorBrands (1).jpg" width="60" height="60" />
</a>
<div class="nav-search">
<form class="">
<div class="input-group">
<input type="text" placeholder="Busque seu material..."/>
<button>
<svg xmlns="http://www.w3.org/2000/svg" height="1.5em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>
</button>
</div>
</form>
</div>
<div class="nav-icons">
<a href="escolas.html"><img src="./fotos/escola.svg" width="32" height="32" title="escolas cadastrada"/></a>
<a href="login.html"><img src="./fotos/person.svg" width="32" height="32" title="perfil"/> </a>
<a href="carrinho.html"><img src="./fotos/carinho.svg" width="32" height="32"/></a>
<a href="endereço.html">
<img src="./fotos/location.svg" width="32" height="32" />
</a>
<a href="convecer.html"><img src="./fotos/work.svg" width="32" height="32" title="trabalhe conosco"></a>
</div>
</nav>
</header>
<div class="cotainer">
<h1 class="title-entrega">Endereço da entrega</h1>
<form class="form" >
<label for="">CEP</label>
<input class="input-conta" type="text" maxlength="9" id="cep" placeholder="*">
<label for="">Estado</label>
<input class="input-conta" type="text" id="uf">
<label for="">Cidade</label>
<input class="input-conta" type="text" id="localidade">
<label for="">Bairro</label>
<input class="input-conta" type="text"id="bairro" >
<label for="">Rua</label>
<input class="input-conta" type="text" id="logradouro">
<label for="">Número</label>
<input class="input-conta" type="number" id="numero">
<label for="">Ponto de referencia</label>
<input class="input-conta" type="text">
<div class="btn-endereco">
<button class="btn-endereco-limpar" type="reset">Limpar</button>
<button class="btn-endereco-enviar" type="submit">Enviar</button>
</div>
</form>
</div>
</body>
<script src="./js/item.js"></script>
<script src="./js/endereco.js"></script>
</html>