forked from vijaykumarperiketi/emcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
107 lines (101 loc) · 4.45 KB
/
contactus.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>EMCC</title>
<meta charset="utf-8">
<!-- bootstrap cdn-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="contactus.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!--navigation bar-->
<nav class="navbar nav-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="glyphicon glyphicon-chevron-down"></span>
</button>
<a class="navbar-brand" href="#">EMCC</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#">Home</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="exec.html">The Team<span class="caret"></span></a>
<ul class="dropdown-menu dropdown-menu-left">
<li><a href="exec.html">Executive Committee</a></li>
<li><a href="pexec.html">Past Executive Committee</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">The Members<span class="caret"></span></a>
<ul class="dropdown-menu dropdown-menu-left">
<li><a href="#">Special Mentions</a></li>
<li><a href="featured.html">Featured</a></li>
<li><a href="contributions.html">Contributions</a></li>
</ul>
</li>
<li><a href="#">Events</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>
</nav>
<!--page content-->
<div class="container">
<!--Section: Contact v.1-->
<section class="section pb-5">
<!--Section heading-->
<div class="row" style="padding-top: 50px;">
<!--Grid column-->
<div class="col-lg-5 mb-4">
<!--Form with header-->
<div class="card text-center" style="padding-top: 80px;">
<h2 class="section-heading h2 pt-4">Contact us:</h2>
<div class="card-body" style="border: 1px solid black;">
<!--Body-->
<div>Mr. A.S. Sarthak<br></div>
<div>President, EMC²<br></div>
<div>+91 8095309080<br></div>
<div>[email protected]<br></div>
<div>[email protected]<br></div>
<div><a href="https://www.instagram.com/bolosarthak/" class="fa fa-instagram">Follow</a></div>
</div>
</div>
<!--Form with header-->
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-7">
<!--Google map-->
<div id="map-container-google-11" class="z-depth-1-half map-container-6">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3807.116329436644!2d78.51728491487663!3d17.406204088067316!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bcb992a61089b8b%3A0x6860898df38073c0!2sEngineers'%20Music%20and%20Cultural%20Club!5e0!3m2!1sen!2sin!4v1584853736672!5m2!1sen!2sin" width="600" height="400" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
<!--Grid column-->
</div>
</section>
<!--Section: Contact v.1-->
</div>
<!--footer-->
<footer class="text-center">
<!--<a class="up-arrow" href="#myPage" data-toggle="tooltip" title="TO TOP">
<span class="glyphicon glyphicon-chevron-up"></span>
</a><br><br>-->
<p>EMCC<br>
<em>OU's very own music club!</em><br>
contact us: +9199999
</p>
</footer>
<script>
$(document).ready(function(){
// Initialize Tooltip
$('[data-toggle="tooltip"]').tooltip();
})
</script>
</div>
</body>
</html>