-
Notifications
You must be signed in to change notification settings - Fork 64
/
contact.html
executable file
·251 lines (228 loc) · 8.16 KB
/
contact.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<!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>Contact Page</title>
<link rel="stylesheet" href="./contact.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous" />
<script src="https://kit.fontawesome.com/57b10b301b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css" />
<link
href="https://fonts.googleapis.com/css2?family=Delius+Unicase:wght@700&family=Lobster&family=Lora:ital@0;1&family=Noto+Serif:ital@1&family=Roboto+Serif:ital,opsz,wght@1,8..144,100&family=Roboto+Slab&family=Source+Sans+Pro:ital,wght@0,600;1,600&display=swap"
rel="stylesheet" />
<style>
.contact h1 {
text-align: center;
font-weight: bold;
}
.row::after {
content: "";
display: table;
clear: both;
}
input[type=text],
select,
textarea {
width: 100%;
padding: 12px;
border-radius: 4px;
border: 2px solid black;
resize: vertical;
padding: 10px;
font-size: 20px;
background-color: white;
}
input[type=email],
select,
textarea {
width: 100%;
padding: 12px;
border-radius: 4px;
border: 2px solid black;
resize: vertical;
padding: 10px;
background-color: white;
font-size: 20px;
color: black;
}
input[type=submit] {
padding: 10px;
background-color: #4CAF50;
border: 0px solid black;
text-align: center;
border-radius: 5px;
font-size: 20px;
font-weight: bold;
width: 100%;
margin-top: 12px;
}
input[type=submit]:hover {
background-color: #3e8e41;
color: #fff;
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.col-25 {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: bold;
font-size: 18px;
width: 25%;
float: left;
margin-top: 6px;
}
.col-75 {
float: left;
margin-top: 6px;
width: 75%;
padding: 2px;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg" id="nav">
<a class="navbar-brand" href="index.html">
<img src="./logo.jpeg" alt="NOSC's logo" class="logo" />
</a>
<button class="navbar-toggler" style="background-color: white;" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<i class="fas fa-bars" id="hamburger_navbar"></i>
</button>
<div class="navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link nav_link" href="index.html">Home<span class="sr-only">(current)</span></a>
</li>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#myteam-section">Know Our Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="policy.html">Privacy & Policy</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
</div>
</nav>
<section>
<div class="contactus-parentdiv">
<div class="contacus-leftchild">
<h2>Contact Us</h2>
<p>Need to get in touch with us? Fill out the form with your enquiry, Our team will get back to you.</p>
</div>
<div class="contactus-rightchild">
<form>
<div style="display: flex; flex-direction: row; ">
<div style="display: flex;flex-direction: column;margin: 10px;">
<label>First Name</label>
<input class="contactus-input" name="fName" style="width: 100%;">
</div>
<div style="display: flex;flex-direction: column;margin: 10px;">
<label>Last Name</label>
<input class="contactus-input" name="sName" style="width: 100%;">
</div>
</div>
<div style="width: 100% ;">
<div style="display: flex;flex-direction: column;margin: 10px;">
<label>Email</label>
<input class="contactus-input" name="email">
</div>
</div>
<div style="width:100%;">
<div style="display: flex;flex-direction: column;margin: 10px;">
<label>What can we help you with ?</label>
<input class="contactus-input" name="comment" />
</div>
</div>
<div style="width: 100%;">
<button class="contactbtn" style="margin-left: 40%;">Submit</button>
</div>
</form>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="f-row">
<div class="f-col">
<img src="Static/NOSC-big.png" class="f-logo" alt="Brand Logo">
<p style="font-style:italic;">
A community for the students, by the students, and of the
students! We’re here to provide you with all the resources
you’ll require in your journey, and mentor you to become the
best of the best.
</p>
</div>
<div class="f-col">
<h3>Useful Links</h3>
<ul>
<li><a href="#">Add links</a></li>
<li><a href="#">to various</a></li>
<li><a href="#">hackathons &</a></li>
<li><a href="#">open soure projects</a></li>
</ul>
</div>
<div class="f-col">
<h3>Services</h3>
<ul>
<li><a href="#">Home</a></li>
</li>
<li>
<a href="#" id="know-our-team-link-footer">Know Our Team</a>
</li>
<li>
<a href="achievements.html">Events</a>
</li>
<li>
<a href="policy.html">Privacy & Policy</a>
</li>
<li>
<a href="terms.html">Terms & Conditions</a>
</li>
<li>
<a href="contact.html">Contact Us</a>
</li>
</ul>
</div>
<div class="f-col">
<h3>Newsletter</h3>
<form action="#" class="f-form">
<i class="far fa-envelope"></i>
<input type="email" placeholder="Enter your Email Id..." required>
<button type="submit" class="f-btn"><i class="fas fa-arrow-right"></i></button>
</form>
<div class="f-social-icons">
<button class="f-neo-button" aria-label="'s twitter handle">
<a href="https://twitter.com/"> <i class="fa-brands fa-x-twitter"></i></a>
</button>
<button class="f-neo-button" aria-label="'s linkedin handle">
<a href="https://www.linkedin.com/in/"> <i class="fa-brands fa-linkedin-in"></i></a>
</button>
<button class="f-neo-button" aria-label="'s instagram handle">
<a href="https://www.instagram.com/"> <i class="fa-brands fa-instagram"></i></a>
</button>
<button class="f-neo-button" aria-label="'s github handle">
<a href="https://github.com/NITRR-Open-Source-Community/NOSC-Website"> <i class="fa-brands fa-github"></i></a>
</button>
</div>
</div>
</div>
<hr class="f-hr">
<p class="f-copyright">NOSC © 2023 - All Rights Reserved</p>
</div>
<div id="notification-container" style="display: none;">
<div class="notification-reminder" style="display: none;">Reminder</div>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>