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
51 lines (51 loc) · 3.08 KB
/
index.html
File metadata and controls
51 lines (51 loc) · 3.08 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
<!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>
<header>
<h1>AZOV SEA</h1>
<p id="head-description">the best sea ever</p>
</header>
<main>
<div id="div-one">
<article id="article1">
<h3>Azov Sea is the shallowest sea in the world</h3>
<img class="images" src="/images/Mariupol beach.webp" alt="sea beach" />
<p>Azov sea is known for being the shallowest sea in the world. It has an average water depth of 23 feet or 7 m and a maximum depth of 46 feet. Water from the Azov sea flows into the Black sea, so it always retains freshwater with low salinity.</p>
<p>sea covers an area of 39,000 kilometres with a total length of 360 km and is 180 km wide. On the other hand, the black sea spans 436,400 km2 and has a maximum water depth of 2,212 m and a volume of 546,000km3.</p>
</article>
<article id="article2">
<h3>A popular vacation spot in Eastern Europe</h3>
<img class="images" src="/images/image2.jpg" alt="many people on the beach" />
<p>A widely preferred holiday destination, the Azov sea offers many exciting activities for people of all ages. Its warm waters and wide sandy beaches are perfect for those trying to break from everyday life’s hustle-bustle.</p>
<p>The coastline of the Azov is dotted with health resorts offering unique mud therapy and hydromassage. People suffering from different types of arthritis visit Azov sea, since it is known for its therapeutic properties due to the presence of vital elements and minerals.</p>
</article>
<article id="article3">
<h3>Azov Sea sustains a rich marine biodiversity</h3>
<img class="images" src="/images/image3.webp" alt="jelly fish" />
<p>The brackish waters of the Azov sea contain diverse flora and fauna, making it a unique marine ecosystem. More than 80 species of fish and 300 invertebrates are commonly found in its waters. Gray mullets, sardines, minnows, sea roaches, bream, anchovy, molluscs, worms and crustaceans dominate the Azov sea. Numerous wildflower and plant species like the sedges, seaweed, water lilies and sacred lotus grow in the Azov sea, adding to its beauty.</p>
<p>Around 600 phytoplankton algae are found in the sea, with diatoms, green algae, pyrophytes, euglena and blue-green algae being the most common species.</p>
</article>
</div>
</main>
<footer>
Web-page is created for training purpose. Text belongs to <a href="https://www.marineinsight.com/">Marineinsight</a>
</footer>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
</body>
</html>