-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (39 loc) · 1.81 KB
/
index.html
File metadata and controls
53 lines (39 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Project: Seoul Travelogue</title>
<style>
h1 {
background-color: lightgreen;
color: rgb(170, 100, 90);
}
img {
background-color: brown;
}
#para1 {color:red;
}
.c1 {color:skyblue;
}
</style>
</head>
<body>
<h1> 5 Things You <em>Must</em> Do in Seoul </h1>
<h2> Ride a bicycle along Hangang river </h2>
<img src="https://www.kasandbox.org/programming-images/avatars/aqualine-tree.png" alt="hangang park">
<p id="para1"> You can cycle at the park along a long stretch of river. Being beside the river, the air is fresh and the breeze is very <strong><em>cooling</em></strong>. <br> When you get tired of cycling, you can watch dance performances of students mimicking the choreographies of Korean Pop groups. </p>
<h2 class="c1"> Buy cosmetics in Myeongdong </h2>
<p class="c1"> Home to many famous local cosmetic brands, buying cosmetics when you visit Korea is a must. Lined side by side, cosmetics stores in Myeongdong compete with one another to give discounted prices which you will never get in other parts of Korea. </p>
<p> Below are a few well known cosmetics brands that you can find in Myeongdong: </p>
<ol>
<li> Innisfree
<li> Etudehouse
<li> Leneige
</ol>
<p> Below are a few well known clothing brands that you can find in Myeongdong: </p>
<ul>
<li> A.land
<li> Uniqlo
</ul>
</body>
</html>