-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-page.html
95 lines (91 loc) · 3.15 KB
/
contact-page.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
89
90
91
92
93
94
95
<!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">
<link rel="stylesheet" href="style.css" />
<!---------------------font family-------------------------->
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap"
rel="stylesheet"
/>
<!---------icon------->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<title>Sinhgad Institute of Technology</title>
</head>
<body>
<div class="container mt-5 pt-2">
<div class="row">
<div class=" col-sm col-md-12">
<h4 class="text-center text-primary" style="text-align: center; color: blue; font-size: larger;">Contact</h4>
<h1 class="text-center" style="font-size:45px;color:blueviolet;font-weight: bold; text-align: center;">KEEP IN TOUCH WITH US </h1>
</div>
</div>
</div>
<br>
<!-- === LOGIN FORM === -->
<form class="w-50 h-50" style="margin-left:380px">
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputEmail4" >Email</label>
<input type="email" placeholder="Enter Your Email" class="form-control" id="inputEmail4">
</div>
<br>
<div class="form-group col-md-6">
<label for="inputPassword4">Password</label>
<input type="password" placeholder="Password" class="form-control" id="inputPassword4">
</div>
</div>
<br>
<div class="form-group">
<label for="inputAddress">Address</label>
<input type="text" class="form-control" id="inputAddress" placeholder="Enter your Address">
</div>
<br>
<div class="form-group">
<label for="text">Your msg goes here...!</label>
<input type="text" class="form-control" id="text" placeholder="Your msg goes here...!">
</div>
<br>
<div class="form-group col-md-4">
<label for="inputState">State</label>
<select id="inputState" class="form-control">
<option selected>Choose...</option>
<option>Maharashtra</option>
<option>Uttar Pradesh</option>
<option>Madhya Pradesh</option>
<option>Rajasthan</option>
<option>Karnataka</option>
<option>Hariyana</option>
</select>
</div>
<br>
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputCity">City</label>
<input type="text" placeholder="City" class="form-control" id="inputCity">
</div>
<br>
<div class="form-group col-md-2">
<label for="inputZip">Zip</label>
<input type="text" placeholder="pin code" class="form-control" id="inputZip">
</div>
</div>
<br>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck">
<label class="form-check-label" for="gridCheck">
Check whether you fill all sections
</label>
</div>
</div>
<br>
<a href="index.html" class="btn" style="border-radius: 10px; color: black;" onclick="enable">#</a>
<br>
</form>
</body>
<br>
<!---------Footer-------->
</html>