<!doctype html>
<html lang="fr">
  <head>
    <meta charset="utf-8">
    <title>Titre de la page</title>
    <link rel###### "stylesheet" href"style.css">
    <script src="script.js"></script>
  </head>
  <body>
  ...
  <!-- Le reste du contenu -->
  ...
  </body>

Structure d’un tableau

<table>
    <tr>
       <th>Prénom</th>
       <th>Nom</th>
       <th>Profession</th>
    </tr>
    <tr>
       <td>Mike</td>
       <td>Stuntman</td>
       <td>Cascadeur</td>
    </tr>
    <tr>
       <td>Mister</td>
       <td>Pink</td>
       <td>Gangster</td>
    </tr>
 </table>

Liste non ordonnée

 <ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul> 

Liste ordonnée

 <ol>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>