-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.12 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.12 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
<!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="styles.css">
<title>Exercice Responsive Design</title>
</head>
<body>
<header class="site-header">
<h1>Mon Site Web</h1>
</header>
<nav class="site-nav">
<ul>
<li><a href="#">Accueil</a></li>
<li><a href="#">À propos</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main class="site-main">
<section>
<h2>Bienvenue sur mon site</h2>
<p>Ceci est un exemple de site web utilisant le responsive design.</p>
</section>
<section class="responsive-content">
<div>
Mon contenu est responsive
</div>
<div>
<img src="https://via.placeholder.com/150" alt="Image de test">
</section>
</main>
<footer class="site-footer">
<p>© 2024 Mon Site Web</p>
</footer>
</body>
</html>