37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<!--
|
||
|
To change this license header, choose License Headers in Project Properties.
|
||
|
To change this template file, choose Tools | Templates
|
||
|
and open the template in the editor.
|
||
|
-->
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>CSS</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
<ol>
|
||
|
<li>
|
||
|
<h1>Films préférés</h1>
|
||
|
<ul>
|
||
|
<li>Citizen Kane</li>
|
||
|
<li>Rois et Reines</li>
|
||
|
<li>Vendredi 13</li>
|
||
|
</ul>
|
||
|
</li>
|
||
|
<li>
|
||
|
<h1>Livres préférés</h1>
|
||
|
<ul>
|
||
|
<li>Le rouge et le noir</li>
|
||
|
<li>Le choix de Sophie</li>
|
||
|
<li>La chute</li>
|
||
|
</ul>
|
||
|
</li>
|
||
|
</ol>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|