forked from ridi/ridicorp.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
executable file
Β·76 lines (66 loc) Β· 2.36 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
---
layout: default
title: "Contact"
fb-img: "assets/img/fb-img-ridicorp.png"
root_class: "contact page"
---
<header class="intro-header ih-contact">
<div class="site-heading contact-heading">
<h1 class="oneline" data-effect="slide-top">
Get in Touch.
</h1>
</div>
<div class="contact-buttons" data-effect="slide-bottom">
<a href="" class="view-map">μ§λ 보기 <i class="icon-pin"></i></a>
<a href="https://drive.google.com/uc?export=download&id=1_-t_XTnmTBKRg66yF1nvcMji0yP0K0J7" class="other-button">
μ ν΄μλ΄ <i class="icon-direct-right"></i>
</a>
</div>
</header>
<div class="contact-fader"></div>
<div id="map_canvas"></div>
<div id="map_controls">
<a href="#" class="close-map"><i class="icon-close"></i></a>
</div>
<div class="how-to-contact">
<div class="htc-left">
<h2>μ£Όμμ μ°λ½μ²</h2>
<h3>μμΈμ κ°λ¨κ΅¬ μμΌλ 702-28 <br>μ΄λ°λ²€μΉλΉλ© 10μΈ΅ (ν
ν€λλ‘ 325) </h3>
<h4>10F, URBAN BENCH, 325 Teheran-ro, Gangnam-gu, Seoul, Korea</h4>
<ul class="contact-point">
<li>λνλ²νΈ : 02-2051-0331</li>
<li>μ±μ©λ¬Έμ : 02-6196-0305</li>
</ul>
</div>
<div class="htc-right">
<h2>μ€μλ κΈΈ</h2>
<div class="hr-box">
<h3>μ§νμ² μ΄μ© μ</h3>
<p class="steps">
<i class="icon-num-1"></i> μ λ¦μ(2νΈμ , λΆλΉμ ) 5λ² μΆκ΅¬λ‘ λμμ 80m μ§μ§νμΈμ.
</p>
<p class="steps">
<i class="icon-num-2"></i> μ€λ₯ΈνΈ 1μΈ΅μ lalavla(ꡬ μμ¨μ¦)κ° λ³΄μ΄λ 건물μ 10μΈ΅ μ
λλ€.
</p>
</div>
</div>
<div class="clear"></div>
</div>
<!-- Google Maps -->
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script src="{{ "/assets/js/maps.js" | prepend: site.baseurl }}"></script>
<script>
$(function(){
$(".view-map").click(function(){
$("header, .how-to-contact, nav, .contact-fader").fadeOut();
$("#map_controls").fadeIn();
return false;
});
$(".close-map").click(function(){
$("#map_controls").fadeOut();
$("header, .how-to-contact, nav, .contact-fader").fadeIn();
return false;
});
initialize();
});
</script>