Created
January 14, 2025 10:36
-
-
Save nawwwaz/2a5ed4d6249c9feadcbfba9b94fac0c1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Titre de l'Article - Nom du Site</title> | |
<link rel="stylesheet" href="style.css"> <!-- Lien vers votre feuille de style CSS --> | |
</head> | |
<body> | |
<header> | |
<nav> | |
<a href="/">Accueil</a> | |
<a href="/categorie1">Catégorie 1</a> | |
<a href="/categorie2">Catégorie 2</a> | |
<a href="/a-propos">À propos</a> | |
<a href="/contact">Contact</a> | |
</nav> | |
</header> | |
<main> | |
<article> | |
<h1>Titre Principal de l'Article</h1> | |
<h2>Sous-Titre de l'Article</h2> | |
<div class="article-meta"> | |
<span>Publié le: 2024-02-29</span> | |
<span>Par: Auteur</span> | |
</div> | |
<img src="image-article.jpg" alt="Description de l'image"> | |
<p> | |
Corps de l'article... Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. | |
... | |
</p> | |
<p> | |
Suite de l'article... | |
</p> | |
<div class="article-tags"> | |
<span>Tags: <a href="/tag/actualite">Actualité</a>, <a href="/tag/technologie">Technologie</a></span> | |
</div> | |
</article> | |
<section class="comments"> | |
<h3>Commentaires</h3> | |
<!-- Affichage des commentaires ici --> | |
<form action="/soumettre-commentaire" method="post"> | |
<textarea name="commentaire" placeholder="Votre commentaire"></textarea> | |
<input type="submit" value="Envoyer le commentaire"> | |
</form> | |
</section> | |
</main> | |
<footer> | |
<p>© 2024 Nom du Site</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment