-
Notifications
You must be signed in to change notification settings - Fork 4
/
forms-address.html
88 lines (75 loc) · 3.23 KB
/
forms-address.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bootstrap Hcode</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style2.css">
</head>
<body>
<div class="container">
<form>
<div class="form-row">
<div class="col form-group">
<label for="first">Primeiro nome</label>
<input type="text" class="form-control" id="first">
<small class="text-muted">Digite sem abreviações.</small>
</div>
<div class="col form-group">
<label for="last">Último nome</label>
<input type="text" class="form-control" id="last">
<small class="text-muted">Digite sem abreviações.</small>
</div>
</div>
<hr>
<div class="form-row">
<div class="col-sm-3 form-group">
<label for="zipcode">CEP</label>
<input type="text" class="form-control" id="zipcode">
</div>
</div>
<div class="form-row">
<div class="col-sm-9 form-group">
<label for="street">Endereço</label>
<input type="text" class="form-control" placeholder="Rua, Av..." id="street">
</div>
<div class="col-sm-3 form-group">
<label for="street-number">Número</label>
<input type="text" class="form-control" id="street-number">
</div>
</div>
<div class="form-row">
<div class="col-sm-6 form-group">
<label for="complement">Complemento</label>
<input type="text" class="form-control" id="complement">
</div>
<div class="col-sm-6 form-group">
<label for="district">Bairro</label>
<input type="text" class="form-control" id="district">
</div>
</div>
<div class="form-row">
<div class="col-sm-4 form-group">
<label for="city">Cidade</label>
<input type="text" class="form-control" id="city">
</div>
<div class="col-6 col-sm-4 form-group">
<label for="state">Estado</label>
<input type="text" class="form-control" id="state">
</div>
<div class="col-6 col-sm-4 form-group">
<label for="country">País</label>
<input type="text" class="form-control" id="country">
</div>
</div>
<div class="form-row">
<button class="btn btn-primary btn-block">Salvar</button>
</div>
</form>
</div>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>