-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
155 lines (114 loc) · 4.82 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Prime Studio</title>
<!-- GOOGLE SHIV -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"> </script>
<![endif]-->
<!-- VIEWPORT FOR MOBILE -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- font-awesome -->
<link href="css/font-awesome.css" rel="stylesheet" type="text/css" />
<!-- google webfont -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,300,500|Merriweather:300,400,700italic' rel='stylesheet' type='text/css'>
<!-- animated css -->
<link rel="stylesheet" href="css/animate.css">
<!-- fullpage scrolling -->
<link rel="stylesheet" type="text/css" href="js/jquery.fullPage.css" />
<!-- MAIN CSS -->
<link href="css/style.css" rel="stylesheet" type="text/css" />
<!-- google map -->
</head>
<body class="sub">
<header>
<div class="container_15">
<h1 id="logo"><a href="index.html">Prime Studio</a></h1>
<div class="menu-collapsed">
<div class="bar"></div>
<nav id="mainnav">
<ul>
<li><a href="about.html">about</a></li>
<li><a href="work.html">work</a></li>
<li><a href="news.html">news</a></li>
<li class="selected"><a href="contact.html">contact</a></li>
</ul>
</nav>
</div>
</div> <!-- container end -->
</header>
<div id="contact-section01" class="sub-section01">
<div class="fpage">
<div class="fcontainer">
<h1>contact</h1>
</div>
</div>
</div> <!-- end section1 -->
<div class="content">
<article>
<div id="contact-section02">
<div class="container_15">
<div class="row group">
<div class="grid_11 prefix_2 suffix_2">
<h2>keep in Touch With Us</h2>
<h3>We are an inviting, approachable studio. Please feel free to
reach out by phone or send us an email here and we’ll follow up within 24 hours.</h3>
<p>15 W. 39th St., Suite 1101 (between 8th and 9th Ave) New York, NY 10018</p>
<p class="subheading">T: +1 212 239 2395 | F: +1 212 239 4866 | [email protected]</p>
</div>
<!-- map
<img src="images/map.jpg" class="scale-with-grid" alt="map"> -->
</div> <!-- end of row -->
<div id="map"></div>
<div class="row group">
<div class="grid_9 prefix_3 suffix_3">
<h2>Recruitment</h2>
<h3>We’re always looking for incredible designers to join our team.
please use the below contact details.</h3>
<p>[email protected]</p>
</div>
</div>
</div> <!-- container end -->
</div> <!-- end section1 -->
</article> <!-- end content -->
</div>
<footer class="sub">
<ul class="fa-ul group">
<li><a href="#"><i class="fa-li fa fa-facebook-square fa-2x"></i><span>Facebook</span></a></li>
<li><a href="#"><i class="fa-li fa fa-instagram fa-2x"></i><span>Instagram</span></a></li>
<li><a href="#"><i class="fa-li fa fa-twitter-square fa-2x"></i><span>Twitter</span></a></li>
<li><a href="#"><i class="fa-li fa fa-vimeo-square fa-2x"></i><span>Vimeo</span></a></li>
</ul>
<p>© Prime Studio 2015 All Rights Reserved.</p>
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
// responsive menu
$(".menu-collapsed").click(function() {
$(this).toggleClass("menu-expanded");
});
// SCROLLTOP
$(window).scroll(function() {
if( $(this).scrollTop() > 500 ) {
$('header').addClass('fixed');
} else {
$('header').removeClass('fixed');
}
});
});
</script>
<script type="text/javascript">
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB7vHyx7A8ro8ov6pY3htDLFm09WCjMysY &callback=initMap">
</script>
</body></html>