-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (101 loc) · 3.37 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
<title>Travel</title>
</head>
<body>
<a href="">Skip to Main Content</a>
<main>
<div>
<h2>Shanghai, China</h2>
<img
src="images/shanghai_skyline.GIF"
width="400"
alt="Shanghai skyline during the day"
/>
<img
src="images/shanghai_skyline.jpg"
width="400"
alt="Shanghai skyline at night"
/>
<h3>Geographical Location: Asia</h3>
<p>
Shanghai, a vibrant metropolis, is nestled along the eastern coast of
China. With a population of over 26 million, it ranks as one of the
world's most populous cities and serves as a global financial hub. The
cityscape of Shanghai is an exquisite blend of history and modernity,
where towering skyscrapers such as the iconic Oriental Pearl Tower and
the Shanghai Tower punctuate the skyline alongside historical
landmarks like the Bund, a waterfront promenade that showcases
colonial-era architecture.
</p>
<p>
The city has an unparalleled shoppign scene that caters to all tastes,
from luxury brands in shiny malls to hidden gems in busy markets.
Moreover, Shanghai's culinary landscape is a testament to its
multiculturalism, offering a symphony of flavors that range from
traditional street food like xiaolongbao (soup dumplings) to
avant-garde dining experiences.
</p>
<h3>Photo Gallery</h3>
<figure>
<img
src="images/shanghai_disney.JPG"
width="200"
alt="A big fairy-tale like castle lit up by yellow lights"
/>
<figcaption>
Enchanted Storybook Castle at Shanghai Disneyland.
</figcaption>
</figure>
<figure>
<img
src="images/shanghai_lanterns.JPG"
width="200"
alt="A street lit up by many hanging lanterns."
/>
<figcaption>
Hanging lanterns to celebrate Chinese New Year
</figcaption>
</figure>
<figure>
<img
src="images/shanghai_lightsdisplay.jpeg"
width="200"
alt="lights of shanghai"
/>
<figcaption>A lights display of Shanghai</figcaption>
</figure>
<figure>
<img
src="images/shanghai_soupdumplings.JPG"
width="200"
alt="A bamboo steamer holding 8 soup dumplings"
/>
<figcaption>
Shanghai's famous soup dumplings (xiaolongbao)
</figcaption>
</figure>
<figure>
<img
src="images/shanghai_thebund.JPG"
width="200"
alt="Big buildings along a rainy road lit up by a yellow lights"
/>
<figcaption>
The Bund is a a waterfront area and a protected historical district
in central Shanghai
</figcaption>
</figure>
<!-- Jess Cheng -->
</div>
<div></div>
<div></div>
<div></div>
</main>
</body>
</html>