forked from kirti-s/ACM-W-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
131 lines (119 loc) · 4.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:400,500,700">
<link rel="stylesheet" href="css/styles-merged.css">
<link rel="stylesheet" href="css/style.min.css">
</head>
<body>
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top probootstrap-navbar">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">ACM W</a>
</div>
<div id="navbar-collapse" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="index.html">About Us</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<section class="flexslider">
<ul class="slides">
<li style="background-image: url(img/slider_3.jpg)" class="overlay">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="probootstrap-slider-text text-center">
<h1 class="probootstrap-heading">Get In Touch</h1>
<p class="probootstrap-subheading">Let's have a chat</p>
</div>
</div>
</div>
</div>
</li>
</ul>
</section>
<section class="probootstrap-section probootstrap-bg-white">
<div class="container">
<div class="row">
<div class="col-md-5 probootstrap-animate" data-animate-effect="fadeIn">
<h2>Drop us a line</h2>
<form action="message.php" method="post" class="probootstrap-form">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" class="form-control" id="name" name="name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" name="email">
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" class="form-control" id="subject" name="subject">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea cols="30" rows="10" class="form-control" id="message" name="message"></textarea>
</div>
<div class="form-group">
<input type="submit" class="btn btn-primary btn-lg" id="submit" name="submit" value="Submit Form">
</div>
</form>
</div>
<div class="col-md-6 col-md-push-1 probootstrap-animate" data-animate-effect="fadeIn">
<h2>Get in touch</h2>
<p>Feel free to write us...</p>
<ul class="probootstrap-contact-info">
<li><i class="icon-pin"></i> <span>BITS Pilani</br>
Pilani</br>
Jhunjhunu</br>
Rajasthan - 333031</br>
India</br>
</span></li>
<li><i class="icon-email"></i><span>[email protected]</span></li>
</ul>
</div>
</div>
</div>
</section>
<footer class="probootstrap-footer">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="row">
<div class="col-md-4">
<div class="probootstrap-footer-widget">
<h3>You will meet us at</h3>
<p>BITS Pilani</br>
Pilani</br>
Jhunjhunu</br>
Rajasthan - 333031</br>
India</br>
</p>
</div>
</div>
<div class="col-md-12 copyright">
<p><small>© 2018 BITS ACM-W. All Rights Reserved. <br> Designed & Developed with <i class="icon icon-heart"></i> by Kirti Sharma</small></p>
</div>
</div>
</div>
<!-- END row -->
</div>
</footer>
<script src="js/scripts.min.js"></script>
<script src="js/custom.min.js"></script>
</body>
</html>