forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (61 loc) · 3.15 KB
/
index.html
File metadata and controls
70 lines (61 loc) · 3.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header class="header_titel"><h1>Some continents around the world</h1></header>
<main>
<div>
<h2 class="titel_art_1">Asia</h2>
</div>
<article>Asia is the largest continent of our planet, both in size and also when we consider the population.
The Asian continent includes 49 countries, that are members of the United Nations. Asian countries are mainly
located in the eastern Hemisphere and in the northern Hemisphere.
Did you know that in China alone as many people live as in Australia,
New Zealand, North America, South America and Western Europe combined? <a href="https://www.kids-world-travel-guide.com/asia-facts.html">More info</a></article>
<img src="https://thumbs.dreamstime.com/z/illustration-blue-ground-map-asia-isolated-background-right-d-isometric-projection-name-continent-map-180645474.jpg" alt="Asia picture">
<div>
<h2 class="titel_art_2">Europe</h2>
</div>
<article>The European continent houses land area of 50
countries. However, of these 50 countries only 44 have their
capital city on the European continent!
Of the European countries, 27 nations belong to the European Union
(EU) which is a political and economic union. Read more about the EU
on our special page here. <a href="https://www.kids-world-travel-guide.com/europe-facts.html">More info</a></article>
<img src="https://th.bing.com/th/id/OIP.fBT4zvMfhj5APxT190fDuQAAAA?pid=ImgDet&rs=1" alt="Europpe picture">
<div>
<h2 class="titel_art_3">Africa</h2>
</div>
<article>
Africa
Africa is second largest continent in size and the second largest continent in population.
The African continent is located mainly in the Eastern Hemisphere and to the major part
in the Northern Hemisphere.
Did you know that Africa is bigger
than the USA, Canada and India together? Africa
covers an area larger than 30 million square kilometres/ 11.7
million square miles! <a href="https://www.kids-world-travel-guide.com/africa-facts.html">More info</a></article>
<img src="https://media.istockphoto.com/photos/3d-render-picture-id613541574?k=6&m=613541574&s=170667a&w=0&h=Ca70FJ-jlAWw0cTbXlXm-iZl61MpB0Eos5ieIP0phR8=" alt="Africa picture">
</main>
</body>
<footer>
<p>Phone no. 01377488468873</p>
<p>Email/ [email protected]</p>
</footer>
</html>