forked from jmbyun/research-group-static-web
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcontact.html
More file actions
128 lines (115 loc) · 4.53 KB
/
contact.html
File metadata and controls
128 lines (115 loc) · 4.53 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-179540919-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-179540919-1');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="/assets/images/logo.png">
<link rel="stylesheet" href="/assets/styles/index.css">
<link rel="stylesheet" href="/assets/styles/header.css">
<link rel="stylesheet" href="/assets/styles/screen.css">
<link rel="stylesheet" href="/assets/styles/footer.css">
<title>Human Language Intelligence Lab</title>
</head>
<body>
<header class="header" :class="{ 'header-scrolled': scrolled }" id="header">
<div class="header-content">
<a href="/">
<div class="logo">
<!-- <div class="logo-drawing-container">
<div class="logo-drawing" ref="logo"></div>
</div> -->
<div class="logo-text pre-wrap">HLI Lab</div>
</div>
</a>
<div class="header-menu">
<a class="header-menu-item" href="/">
Home
</a>
<a class="header-menu-item" href="/members">
Members
</a>
<a class="header-menu-item" href="/research">
Research
</a>
<a class="header-menu-item" href="/links">
Links
</a>
<a class="header-menu-item" href="/contact">
Contact
</a>
</div>
</div>
</header>
<div class="main">
<div class="contact home">
<section class="screen" style="background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(/assets/images/backgrounds/whatsapp.jpg)">
<div class="content">
<h2>Contact</h2><br />
<small>Human Language Intelligence Lab @ SKKU</small>
</div>
</section>
<div class="row">
<div class="container">
<div class="contact v-padded">
<h3 class="row-title">Address</h3>
<div class="text pre-wrap">Office 27303, Engineering Building 2
Sungkyunkwan University Natural Sciences Campus, 2066 Seobu-ro
Jangan-gu, Suwon, Gyeonggi-do 16419, South Korea</div>
</div>
</div>
</div>
<div class="row">
<div class="container">
<div class="contact v-padded">
<h3 class="row-title">Map</h3>
<iframe
class="map-iframe"
src="https://www.google.com/maps/embed?region=KR&language=en&pb=!1m18!1m12!1m3!1d3174.0513508336803!2d126.97320525107388!3d37.29391677975101!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x357b42b61ce1867f%3A0xb38e2754eb2dbb08!2sSKKU%20Natural%20Sciences%20Campus!5e0!3m2!1sen!2skr!4v1601696033976!5m2!1sen!2skr"
frameborder="0"
allowfullscreen=""
></iframe>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<div class="footer-inner">
<div class="footer-item">
<div class="footer-text">
© Copyright <span id="footer-year">2020</span> | Human Language Intelligence Lab
</div>
<div class="footer-text pre-wrap">Office 27303, Engineering Building 2
Sungkyunkwan University Natural Sciences Campus, 2066 Seobu-ro
Jangan-gu, Suwon, Gyeonggi-do 16419, South Korea</div>
</div>
<div class="footer-item">
<div class="footer-text">
<a href="https://github.com/Human-Language-Intelligence/research-group-static-web">
Repository for this Website
</a>
|
<a href="https://docs.google.com/spreadsheets/d/1xn6YEWFy4t2v1svjEVmhkUVTfTJesfJtIzNBNZm7tEM/edit?usp=sharing">
Edit Content
</a>
</div>
</div>
</div>
</div>
<script>
document.getElementById('footer-year').innerHTML = (new Date()).getFullYear();
</script>
</footer>
<script src="/assets/scripts/index.js"></script>
</body>
</html>