-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssignment3.html
76 lines (72 loc) · 3.21 KB
/
Assignment3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assignment3</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body
style="background-image: url('https://w0.peakpx.com/wallpaper/296/16/HD-wallpaper-black-concrete-texture-black-concrete-abstract-texture.jpg');background-repeat: no-repeat;background-size: cover;">
<div class="container-xl text-white justify-content-center" >
<form class="row g-3">
<div class="col-md-6">
<label for="inputEmail4" class="form-label">Email</label>
<input type="email" class="form-control" id="inputEmail4">
</div>
<div class="col-md-6">
<label for="inputPassword4" class="form-label">Password</label>
<input type="password" class="form-control" id="inputPassword4">
</div>
<div class="col-12">
<label for="inputAddress" class="form-label"> Current Address</label>
<input type="text" class="form-control" id="inputAddress"
placeholder="Door/Flat No. Locality/Area, Road">
</div>
<div class="col-12">
<label for="inputAddress2" class="form-label">Permanent Address </label>
<input type="text" class="form-control" id="inputAddress2"
placeholder="Door/Flat No. Locality/Area, Road">
</div>
<div class="col-md-6">
<label for="inputCity" class="form-label">City</label>
<input type="text" class="form-control" id="inputCity">
</div>
<div class="col-md-4">
<label for="inputState" class="form-label">State</label>
<select id="inputState" class="form-select">
<option selected>Choose...</option>
<option>Karnataka</option>
<option>AndhraPradesh</option>
<option>Delhi</option>
</select>
</div>
<div class="col-md-2">
<label for="inputZip" class="form-label">Pin Code</label>
<input type="text" class="form-control" id="inputZip">
</div>
<div class="col-12">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck">
<label class="form-check-label" for="gridCheck">
Check me out
</label>
</div>
</div>
<div class="col-12">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck">
<label class="form-check-label" for="gridCheck">
I have/am read/aware of the terms and conditions. 
</label>
</div>
</div>
<div class="col-12">
<button type="submit" class="btn btn-outline-light">Sign in</button>
</div>
</form>
</div>
<script src="js/bootstrap.bundle.min.js">
</script>
</body>
</html>