-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (51 loc) · 1.81 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>여행닷컴</title>
<link rel="stylesheet" href="./css/mainstyle.css">
<head>
<body>
<header>
<br><br>
<a href="index.html">
<img id="logo" src="./media/logo2.png" width="200px" style="text-align: center;">
</a>
<audio src="" autoplay loop></audio>
</header>
<section>
<span><h3>이용 가능 지역</h3></span>
<a href ="./etc/seoul_region.html">
<div class="seoul">
<div class="content">
<span>서울</span>
</div>
</div></a>
<a href="./etc/busan_region.html">
<div class="busan">
<div class="content">
<span>부산</span>
</div>
</div></a>
<a href="./etc/gyeongju_region.html">
<div class="gyeongju">
<div class="content">
<span>경주</span>
</div>
</div></a>
<a href="./etc/incheon_region.html">
<div class="incheon">
<div class="content">
<span>인천</span>
</div>
</div></a>
</section>
<hr>
<footer>
<br>
<span>
DESIGN BY K team
</span>
</footer>
</body>
</html>