25 lines
536 B
TypeScript
25 lines
536 B
TypeScript
import { Snippet } from "@/components/Snippet";
|
|
|
|
const htmlBasicBodySnippets = [
|
|
{
|
|
name: "Exemple de la balise body",
|
|
codeLanguage: "html",
|
|
withLineNumbers: true,
|
|
code: `<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head></head>
|
|
|
|
<body>
|
|
<h1>Bienvenue sur mon site !</h1>
|
|
<p>Ceci est un exemple de page HTML.</p>
|
|
<img src="image.jpg" alt="Une image d'exemple">
|
|
<a href="https://www.example.com">Visitez notre site</a>
|
|
</body>
|
|
</html>`,
|
|
},
|
|
];
|
|
|
|
export default {
|
|
htmlBasicBody: () => <Snippet snippets={htmlBasicBodySnippets} />,
|
|
};
|