-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (49 loc) · 2.28 KB
/
Copy pathindex.html
File metadata and controls
63 lines (49 loc) · 2.28 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
<!DOCTYPE html>
<html>
<head>
<!--All images and "Greece" paragraph were taken from Wikipedia.org-->
<meta charset="utf-8">
<title>Project: Traveling to Greece</title>
<style>
body {
background-color: rgb(193, 234, 245);
}
#greece-title {
color: rgb(43, 75, 145);
}
h2 {
background-color: rgb(255, 255, 255);
}
.blue {
color: rgb(12, 37, 148);
}
</style>
</head>
<body>
<h1 id="greece-title">Travel to Greece</h1>
<p> Greece is amazing! You have to see it for yourself.
<h2>A little bit about Greece</h2>
<p>Greece is a country in southeastern <em>Europe</em> with thousands of islands throughout the Aegean and Ionian seas. Influential in ancient times, it's often called the <strong class="blue">cradle of Western civilization</strong>. Athens, its capital, retains landmarks including the 5th-century B.C. Acropolis citadel with the Parthenon temple. Greece is also known for its beaches, from the black sands of Santorini to the party resorts of Mykonos."</p>
<h3 class="blue">Top places to see in Greece:</h3>
<ol>
<li>Athens</li>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/82/Athens_academy.jpg/220px-Athens_academy.jpg" alt="A temple in Athens" width="300">
<br> <ul>
<li>History</li>
<li>Museums</li>
</ul>
<li>Santorini</li>
<img src="https://upload.wikimedia.org/wikipedia/en/0/0a/Blue-dome-Santorini.JPG" alt="Beautiful View" width="300">
<br> <ul>
<li>Views</li>
<li>Restaurants</li>
</ul>
<li>Mykonos</li>
<img src="https://upload.wikimedia.org/wikipedia/commons/a/ad/Elias_Beach_on_Mykonos.JPG" alt="Beach!" width="300">
<br> <ul>
<li>Beaches</li>
<li>Sun</li>
</ul>
</ol>
</body>
</html>