-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
306 lines (282 loc) · 9.39 KB
/
1.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
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Cedarville+Cursive&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Gaegu&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Neucha&display=swap" rel="stylesheet">
<style>
* {box-sizing: border-box;}
body {
margin: 20px;
font-family: 'Gaegu', cursive;
font-size: 30px;
background-color: mistyrose;
}
.header {
overflow: hidden;
background-color: salmon;
padding: 10px 5px;
font-family: 'Neucha', cursive;
}
.header a {
float: left;
color: white;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
.header a.logo {
font-size: 25px;
font-weight: bold;
}
.header a:hover {
/*background-color: #ddd;*/
color: pink;
}
.header-right {
float: right;
}
@media screen and (max-width: 500px) {
.header a {
float: none;
/*display: block;*/
text-align: left;
}
.header-right {
float: none;
}
}
div.example {
text-align: center;
}
@media screen and (min-width: 601px) {
div.example {
font-size: 80px;
}
}
@media screen and (max-width: 600px) {
div.example {
font-size: 30px;
}
}
/* ************************* RESPONSIVE GALLERY ************************* */
#rig {
max-width:100%;
max-height: 100%
margin:0 auto; /*center aligned*/
padding:0;
font-size:0; /* Remember to change it back to normal font size if have captions */
list-style:none;
background-color: white;
}
#rig li {
display: inline-block;
*display:inline;/*for IE6 - IE7*/
width:25%;
vertical-align:middle;
box-sizing:border-box;
margin:0;
padding:0;
}
/* The wrapper for each item */
.rig-cell {
/*margin:12px;
box-shadow:0 0 6px rgba(0,0,0,0.3);*/
display:block;
position: relative;
overflow:hidden;
}
/* If have the image layer */
.rig-img {
display:block;
width: 100%;
height: auto;
border:none;
transform:scale(1);
transition:all 1s;
}
#rig li:hover .rig-img {
transform:scale(1.05);
}
/* If have the overlay layer */
.rig-overlay {
position: absolute;
display:block;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
background: #3DC0F1 url(img/link.png) no-repeat center 20%;
background-size:50px 50px;
opacity:0;
filter:alpha(opacity=0);/*For IE6 - IE8*/
transition:all 0.6s;
}
#rig li:hover .rig-overlay {
opacity:0.8;
}
/* If have captions */
.rig-text {
display:block;
padding:0 30px;
box-sizing:border-box;
position:absolute;
left:0;
width:100%;
text-align:center;
text-transform:capitalize;
font-size:18px;
font-weight:bold;
font-family: 'Oswald', sans-serif;
font-weight:normal!important;
top:40%;
color:white;
opacity:0;
filter:alpha(opacity=0);/*For older IE*/
transform:translateY(-20px);
transition:all .3s;
}
#rig li:hover .rig-text {
transform:translateY(0px);
opacity:0.9;
}
@media (max-width: 9000px) {
#rig li {
width:25%;
}
}
@media (max-width: 700px) {
#rig li {
width:33.33%;
}
}
@media (max-width: 550px) {
#rig li {
width:50%;
}
}
/* ******************** END RESPONSIVE GALLERY ************************* */
</style>
</head>
<body>
<div class="header">
<a href="#default" class="logo" style="font-family:'Cedarville Cursive', cursive; font-size:35px;" >Crystal Gong</a>
<div class="header-right">
<a href="index.html">Home</a>
<a href="1.html" style="color: indianred">1</a>
<!-- <a href="2.html">2</a> -->
<a href="3.html">2</a>
<a href="4.html">3</a>
<a href="5.html">4</a>
</div>
</div>
<!-- <div style="padding-left:20px">
<h1>Responsive Header</h1>
<p>Resize the browser window to see the effect.</p>
<p>Some content..</p>
</div> -->
<p style="font-size:3vw; color: lightsalmon"> A message from the creator... </p>
<!-- ************************* RESPONSIVE GALLERY ************************* -->
<ul id="rig">
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/LsbKjqWz/2-1.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">South Hills High School<br>West Covina, California</br><br>June 5, 2017</br></span>
</a>
</li>
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/SQ8FzxfM/2-2.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">Bellagio Conservatory and Botanical Garden<br>Las Vegas, Nevada</br><br>December 24, 2016</br></span>
</a>
</li>
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/NM33P3BF/2-3.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">Disney California Adventure<br>Anaheim, California</br><br>July 8, 2016</br></span>
</a>
</li>
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/T1nz8t39/2-4.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">Cosmopolitan Ice Rink<br>Las Vegas, Nevada</br><br>December 25, 2016</br></span>
</a>
</li>
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/gcKLdmLv/2-5.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">Sahalie Falls<br>McKenzie River, Oregon</br><br>April 4, 2017</br></span>
</a>
</li>
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/kXX6gzWL/2-6.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">17 Mile Drive<br>Pebble Beach, California</br><br>January 3, 2017</br></span>
</a>
</li>
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/RFLhMLhM/2-7.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">Vista Hermosa Park<br>Los Angeles, California</br><br>May 30, 2017</br></span>
</a>
</li>
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/Cx9zJK9V/2-8.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">Hollywood Sign Hike<br>Hollywood, California</br><br>November 11, 2016</br></span>
</a>
</li>
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/Yqn4GR30/2-9.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">South Hills High School<br>West Covina, California</br><br>June 5, 2017</br></span>
</a>
</li>
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/Gm44kD7Q/2-10.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">Disneyland<br>Anaheim, California</br><br>October 30, 2016</br></span>
</a>
</li>
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/9fTzkhjw/2-11.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">UC Berkeley<br>Berkeley, California</br><br>January 4, 2017</br></span>
</a>
</li>
<li>
<a class="rig-cell" href="#">
<img class="rig-img" src="https://i.postimg.cc/sXr1dNV6/2-12.jpg">
<span class="rig-overlay"></span>
<span class="rig-text">Mt. Hood National Forest<br>Rhododendron, Oregon</br><br>April 3, 2017</br></span>
</a>
</li>
</ul>
<p style="font-size:3vw; color: lightsalmon">Crystal,<p style="font-size:3vw; color: lightsalmon">Happy birthday! Here are some of the times that we have spent together. We have been good friends for so long now and I am grateful for our friendship. Looking back to the first day we met exactly 6 years ago today (August 26, 2013) to present time, we have had quite an interesting friendship development. From sending you blurry pictures of my notes on purpose and altercations in the quad to road tripping up the California coast and travelling to Oregon together, who would have thought it would blossom to an unparalleled friendship. Despite hanging out only from time to time now, I'm sure I'll see you sooner or later. Cheers to 20! Hope this birthday is the best one yet.</p> <p style="font-size:3vw; color: lightsalmon"> Denise Wang</p>
<!-- <h1> Mr. and Mrs. Dursley, of number four, Privet Drive, were proud to say that they were perfectly normal, thank you very much. They were the last people you'd expect to be involved in anything strange or mysterious, because they just didn't hold with such nonsense.
Mr. Dursley was the director of a firm called Grunnings, which made
drills. He was a big, beefy man with hardly any neck, although he did
have a very large mustache. Mrs. Dursley was thin and blonde and had
nearly twice the usual amount of neck, which came in very useful as she
spent so much of her time craning over garden fences, spying on the
neighbors. The Dursleys had a small son called Dudley and in their
opinion there was no finer boy anywhere. </h1> -->
<!-- ******************** END RESPONSIVE GALLERY ************************* -->
</body>
</html>