-
Notifications
You must be signed in to change notification settings - Fork 5
/
areaEW.html
40 lines (36 loc) · 1.17 KB
/
areaEW.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>지역</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/areaEW.css">
<script src="js/jquery.min.js"></script>
<script src="js/common.js"></script>
<script src="js/areaEW.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-154597852-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-154597852-1');
</script>
</head>
<body>
<div class="container">
<header>
<h2 id="area_title"></h2>
<p>클릭 시 이동합니다</p>
</header>
<section>
<div class="areamap">
<div id="stage-list">
</div>
</div>
<a href="index.html" class="btn btn-back" role="button">뒤로가기</a>
</section>
</div>
</body>
</html>