25 lines
550 B
TypeScript
25 lines
550 B
TypeScript
import { Snippet } from "@/components/Snippet";
|
|
|
|
const htmlBasicHeadSnippets = [
|
|
{
|
|
name: "Exemple de la balise head",
|
|
codeLanguage: "html",
|
|
withLineNumbers: true,
|
|
code: `<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Mon super site</title>
|
|
<meta name="description" content="Ceci est un exemple de page HTML.">
|
|
</head>
|
|
|
|
<body></body>
|
|
</html>`,
|
|
},
|
|
];
|
|
|
|
export default {
|
|
htmlBasicHead: () => <Snippet snippets={htmlBasicHeadSnippets} />,
|
|
};
|