-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcontact_us.html
86 lines (74 loc) · 3.98 KB
/
contact_us.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
<!DOCTYPE HTML>
<html>
<head>
<title>Contact Us</title>
<link rel="icon" href="images/sitelogo.jpg">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" type="text/css" href="assets/css/achievements.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/news-events-tabs.css">
<link rel="stylesheet" type="text/css" href="assets/css/swiper.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/modal.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" integrity="sha384-KA6wR/X5RY4zFAHpv/CnoG2UW1uogYfdnP67Uv7eULvTveboZJg0qUpmJZb5VqzN" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/social_media.css">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Hind+Siliguri" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/blog.css">
</head>
<body class="subpage">
<!-- Header -->
<header id="header">
<div class="inner">
<a href="index.php" class="logo">Spectrum</a>
<nav id="nav">
<a href="index.php">Home</a>
</nav>
<a href="#navPanel" class="navPanelToggle"><span class="fa fa-bars"></span></a>
</div>
</header>
<div class="container-fluid">
<div class="container">
<h2 class="text-center" id="title">Contact Us</h2>
<h3 class="text-center" id="title">If you have any query related to anything just drop the message here!</h3>
<hr>
<div class="row">
<div class="col-sm-12">
<form role="form" method="post" action="contact_us.php" enctype="multipart/form-data">
<fieldset>
<p class="text-uppercase pull-center"> </p>
<div class="form-group">
<label for="full name">Full Name:</label>
<input type="text" name="fname" id="fname" class="form-control input-lg" placeholder="Full name" required>
</div>
<div class="form-group">
<label for="email">Email Id:</label>
<input type="email" name="email" id="email" class="form-control input-lg" placeholder="Email Address" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" required>
</div>
<div class="form-group">
<label for="branch">Branch:</label>
<input type="text" name="branch" id="branch" class="form-control input-lg" placeholder="Branch" required>
</div>
<div class="form-group">
<label for="year">Year:</label>
<input type="text" name="year" id="year" class="form-control input-lg" placeholder="Year" required>
</div>
<div class="form-group">
<label for="message">Your message:</label>
<textarea type="text" name="message" id="message" class="form-control input-lg" placeholder="Your message" required></textarea>
</div>
<input type="submit" id="b" class="btn btn-lg btn-primary" value="Send" style="background-color: #5385c1;">
</div>
</fieldset>
</form>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>