-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.html
More file actions
73 lines (56 loc) · 2.7 KB
/
Copy pathbootstrap.html
File metadata and controls
73 lines (56 loc) · 2.7 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
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-uWxY/CJNBR+1zjPWmfnSnVxwRheevXITnMqoEIeG1LJrdI0GlVs/9cVSyPYXdcSF" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="display-2">Forms</div>
<form action="#nowwhere">
<div class="row g-3">
<div class="form-group col-md-6">
<label for="email" class="text-start">Email</label>
<input type="email" id="email" class="form-control" placeholder="email">
</div>
<div class="form-group col-md-6">
<label for="password">Password</label>
<input type="password" id="email" class="form-control" placeholder="password">
</div>
<div class="form-group">
<label for="address">Address</label>
<input type="text" id="address" class="form-control" placeholder="Address">
</div>
<div class="form-group col-4">
<label for="city">city</label>
<input type="text" id="city" class="form-control" placeholder="city">
</div>
<div class="form-group col-4">
<label for="state">State</label>
<select name="state" id="state" class="form-control ">
<option value="WB">West Bengal</option>
<option value="WB">Delhi</option>
<option value="WB">Maharashtra</option>
</select>
</div>
<div class="form-group col-4">
<label for="zip code">zip code</label>
<input type="number" id="zip code" class="form-control" placeholder="zip code">
</div>
<div class="form-group">
<input type="checkbox" class="form-check-input" id="T&c">
<label for="T&c" class="form-check-label">Terms & conditions</label>
</div>
</div>
<button class="btn btn-primary" style="margin-top:20px">Sign Up!</button>
</div>
</form>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"></script>
</body>
</html>