-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathww.html
71 lines (66 loc) · 1.84 KB
/
ww.html
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
71
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
}
header {
background: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
margin: 20px 0;
}
nav a {
margin: 0 15px;
color: #fff;
text-decoration: none;
}
section {
background: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(16, 57, 98, 0.1);
}
footer {
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Bienvenue sur Mon Site</h1>
<nav>
<a href="#about">À Propos</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="about">
<h2>À Propos de Nous</h2>
<p>Ceci est un exemple de page web. Vous pouvez ajouter vos propres informations ici.</p>
</section>
<section id="contact">
<h2>Contactez-Nous</h2>
<form>
<label for="name">Nom:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br><br>
<input type="submit" value="Envoyer">
</form>
</section>
<footer>
<p>© 2024 Mon Site Web</p>
</footer>
</body>
</html>