28 lines
450 B
HTML
28 lines
450 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="Author" content="">
|
|
<title>Header et paragraph</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Titre principale de la page</h1>
|
|
|
|
<h2>Thèse</h2>
|
|
|
|
<p>Jusqu'ici tout va bien</p>
|
|
|
|
<h2>Antithèse</h2>
|
|
|
|
<p>Là encore</p>
|
|
|
|
<p>Mais il reste du chemin</p>
|
|
|
|
<h2>Synthèse</h2>
|
|
|
|
<p>Finalement ce n'était pas très dur!</p>
|
|
|
|
</body>
|
|
</html>
|