-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsivecor.html
More file actions
47 lines (47 loc) · 1.73 KB
/
responsivecor.html
File metadata and controls
47 lines (47 loc) · 1.73 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/responsivecor.css">
<title>Exercice</title>
</head>
<body>
<header></header>
<main>
<section class="zone_1">
<article class="col-3">
<nav class="navbar">
<ul >
<li>The Flight</li>
<li>The City</li>
<li>The Island</li>
<li>The Food</li>
</ul>
</nav>
</article>
<div class="col-6 center">
<h1>The city</h1>
<p>Chania is the capital of the Chania region on the island of Crete. The city can be divided in two parts, the old town and the modern city.</p>
</div>
<div class="col-3 aside">
<h3>What?</h3>
<p>Chania is a city on the island of Crete.</p>
<h3>Where?</h3>
<p>Crete is a Greek island in the Mediterranean Sea.</p>
<h3>How?</h3>
<p>You can reach Chania airport from all over Europe.</p>
</div>
</section>
<section class="zone_2">
<div class="col-3 img"><img src="img/cabin.png" alt=""></div>
<div class="col-3 img"><img src="img/cake.png" alt=""></div>
<div class="col-3 img"><img src="img/circus.png" alt=""></div>
<div class="col-3 img"><img src="img/game.png" alt=""></div>
</section>
</main>
<footer>
<p>Resize the browser window to see how the content respond to the resizing.</p>
</footer>
</body>
</html>