56 lines
1.6 KiB
HTML
56 lines
1.6 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>Titre + Tableau</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
td{
|
|
border : 1px solid black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Premier titre</h1>
|
|
<h2>Second titre</h2>
|
|
<h3>Troisieme titre</h3>
|
|
<h4>Quatrième titre</h4>
|
|
<h5>Cinquième titre</h5>
|
|
<h6>Sixième titre</h6>
|
|
<br />
|
|
<table style="border : 1px solid black; border-collapse: collapse; text-align: center">
|
|
<caption>Films classiques</caption>
|
|
<tr>
|
|
<td></td>
|
|
<td>16H</td>
|
|
<td>18H</td>
|
|
<td>20H</td>
|
|
<td>22H</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Salle 1</td>
|
|
<td>Star Wars</td>
|
|
<td>Empire Strikes Again</td>
|
|
<td>Return of Jedi</td>
|
|
<td>The Exorcist</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Salle 2</td>
|
|
<td colspan="2">Dances with Wolves</td>
|
|
<td colspan="2">Gone with the Wind</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Salle 3</td>
|
|
<td colspan="2">A Space Odissey</td>
|
|
<td>The Conversation</td>
|
|
<td>5 Easy pieces</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|