-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
60 lines (53 loc) · 1.74 KB
/
Copy pathtemplate.html
File metadata and controls
60 lines (53 loc) · 1.74 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mon Projet Web</title>
<!-- Lien vers le fichier CSS -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- En-tête du site -->
<header>
<h1>Bienvenue sur Mon Projet Web</h1>
<nav>
<ul>
<li><a href="#accueil">Accueil</a></li>
<li><a href="#a-propos">À propos</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Section principale -->
<main>
<!-- Section d'accueil -->
<section id="accueil">
<h2>Accueil</h2>
<p>Ceci est la page d'accueil de mon projet web.</p>
</section>
<!-- Section À propos -->
<section id="a-propos">
<h2>À propos</h2>
<p>Informations sur le projet.</p>
</section>
<!-- Section de contact -->
<section id="contact">
<h2>Contact</h2>
<form>
<label for="nom">Nom:</label>
<input type="text" id="nom" name="nom" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Envoyer</button>
</form>
</section>
</main>
<!-- Pied de page -->
<footer>
<p>© 2024 Mon Projet Web. Tous droits réservés.</p>
</footer>
</body>
</html>