-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmuseum_Visit.html
More file actions
163 lines (152 loc) · 4.39 KB
/
Copy pathmuseum_Visit.html
File metadata and controls
163 lines (152 loc) · 4.39 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
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
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="https://kit.fontawesome.com/dceadd6cbb.js" crossorigin="anonymous"></script>
<title>Museum - Home</title>
<style>
body {
@import url('https://fonts.googleapis.com/css2?family=Do+Hyeon&display=swap');
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #fff;
}
header {
background-color: #000;
color: #ffd700;
padding: 1em;
text-align: center;
}
nav {
background-color: #000;
display: flex;
justify-content: center;
}
nav ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}
nav a {
color: #ffd700;
display: block;
padding: 1em;
text-decoration: none;
}
main {
padding: 1em;
background-color: rgba(255, 215, 0, 0.3);
}
section {
background-color: #fff;
border: 1px solid #ddd;
margin: 1em 0;
padding: 1em;
}
footer {
background-color: #000;
color: #ffd700;
padding: 1em;
text-align: center;
}
iframe{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
h2{
font-family: 'Do Hyeon', sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
.admin{
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: end;
padding-right: 10px;
text-decoration: none;
color: #ffd700;
}
p{
font-size: 20px;
}
.on_now_tag{
font-size: 14px;
color: #fd183a;
padding: 2px 10px;
margin-left: -20px;
margin-top: 10px;
font-weight: 500;
}
.on_now_tag:after {
content: "";
display: inline-block;
width: 15px;
height: 15px;
background-color: #fd183a;
border-radius: 50%;
margin-left: 3px;
-webkit-animation:blink 0.5s ease-in-out infinite alternate;
-moz-animation:blink 0.5s ease-in-out infinite alternate;
animation:blink 0.5s ease-in-out infinite alternate;
}
-webkit-keyframes blink{
0% {opacity:0;}
100% {opacity:1;}
}
@-moz-keyframes blink{
0% {opacity:0;}
100% {opacity:1;}
}
@keyframes blink{
0% {opacity:0;}
100% {opacity:1;}
}
.bar{
display: flex;
justify-content: end;
font-size: 20px;
}
#mail{
margin-left: 15px;
margin-top: 12px;
text-decoration: none;
color: white;
}
</style>
</head>
<body>
<header>
<div class="bar">
<p>안녕하세요 박수근님</p>
<a href="http://127.0.0.1:5500/escape9_mail_final.html" id="mail" class="far fa-envelope fa-2x"></a>
<span class="on_now_tag" ></span>
</div>
<h1>Escape Museum</h1>
</header>
<nav>
<ul>
<li><a href="http://127.0.0.1:5500/museum_home.html">Home</a></li>
<li><a href="http://127.0.0.1:5500/museum_Exhibition.html#">Exhibitions</a></li>
<li><a href="http://127.0.0.1:5500/museum_Collections.html">Collections</a></li>
<li><a href="http://127.0.0.1:5500/museum_Visit.html">Visit</a></li>
</ul>
</nav>
<main>
<section>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3165.917710719861!2d126.78118370000001!3d37.486268200000005!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x357b7d2cb9b5d431%3A0x971a56a6eb1a6d61!2z7J207Iqk7LyA7J207ZSEOQ!5e0!3m2!1sko!2skr!4v1676195219975!5m2!1sko!2skr" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
<h2>경기도 부천시 원미구 부일로 459,5층(심곡동) <구주소: 심곡동382-3>
- CGV부천역 맞은 편, 부천역 3번 출구 부터 도보 3분거리</h2>
</section>
</main>
<footer>
<p>©Escape Museum of Adventure 2023</p>
</footer>
</body>
</html>