-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmuseum_Exhibition.html
More file actions
174 lines (153 loc) · 4.04 KB
/
Copy pathmuseum_Exhibition.html
File metadata and controls
174 lines (153 loc) · 4.04 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
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="https://kit.fontawesome.com/dceadd6cbb.js" crossorigin="anonymous"></script>
<title>Museum</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-size: cover;
}
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 {
display: flex;
background-color: #000;
border: 1px solid #ddd;
margin: 1em 0;
padding: 1em;
}
footer {
background-color: #000;
color: #ffd700;
padding: 1em;
text-align: center;
align-items: end;
}
.hap_ex{
padding-left: 30px;
}
.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>
<img clss="hap_img"src="https://ticketimage.interpark.com/Play/image/large/22/22014293_p.gif">
<div class="hap_ex">
<h2>합스부르크 600년, 매혹의 걸작들</h2>
<p >장소</p>
<p>국립중앙박물관 기획전시실</p>
<p >기간 </p>
<p >2022.10.25 ~2023.03.01</p>
<p >관람시간</p>
<p >60분</p>
<p >관람연령</p>
<p >전체관람가</p>
</div>
</section>
</main>
<footer>
<p>©Escape Museum of Adventure 2023</p>
</footer>
</body>
</html>