-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathforms-size.html
More file actions
62 lines (51 loc) · 2.36 KB
/
forms-size.html
File metadata and controls
62 lines (51 loc) · 2.36 KB
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
<!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/style.css">
</head>
<body>
<div class="container">
<form>
<div class="form-group">
<label for="name">Nome</label>
<input type="text" name="name" id="name" class="form-control form-control-lg" placeholder="Nome">
<input type="text" name="name" id="name" class="form-control form-control" placeholder="Nome">
<input type="text" name="name" id="name" class="form-control form-control-sm" placeholder="Nome">
</div>
<div class="form-group">
<label for="satate">Estado</label>
<select name="state" id="state" class="form-control form-control">
<option value="SP">São Paulo</option>
<option value="RJ">Rio de Janeiro</option>
<option value="MG">Minas Gerais</option>
<option value="PR">Paraná</option>
</select>
</div>
<div class="form-group">
<label for="satate">Estado</label>
<select name="state" id="state" class="form-control" multiple>
<option value="SP">São Paulo</option>
<option value="RJ">Rio de Janeiro</option>
<option value="MG">Minas Gerais</option>
<option value="PR">Paraná</option>
</select>
</div>
<div class="form-group">
<label for="message">Mansagem</label>
<textarea name="message" id="message" cols="30" rows="10" class="form-control"></textarea>
</div>
<div class="form-group">
<label for="upload">Arquivo</label>
<input type="file" name="upload" id="upload" class="form-control-file">
</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>