Les restaurants
du coeur
Les restaurants du coeur

Code source :
<html>
  <head>
    <style>
      .titre {
        font-size: xx-large; 
        font-weight: bolder; 
        word-spacing: 1.2em; 
        text-transform: uppercase; 
        border: 10px groove red; 
        text-align: center; 
        margin-bottom: 20px;
      }
      .sommaire {
        border: 3px double red; 
        text-align: center;
      }
      .roman {
        list-style-type: upper-roman;
      }
      .roman li {
        font-size: x-large; 
        font-weight:bold; 
        border: 1px solid red; 
        text-align: center;
        text-decoration: underline;
      }
      .decimal li {
        font-size: medium;
      }
      .decimal {
        list-style-type: decimal;
      }
      p {
        font-size:small; 
        font-weight:normal; 
        border: 1px dotted red; 
        text-align: justify;
        text-decoration: none;
        padding: 3px;
      }
      .image {
        text-align: center;
      }
    </style>
  </head>
  <body>
    <div class="titre">Les restaurants du coeur</div>
    <div class="sommaire">
      <ul class="decimal">
        <li>Brève Histoire des Restos du Cœur</li>
        <li>La solidarité</li>
        <li>La distribution</li>
        <li>Les relais du coeur</li>
        <li>Un soutien inestimable</li>
      </ul>
    </div>
    <ul class="roman">
      <li>Brève Histoire <br>des Restos du Cœur
        <p> ... </p>
        <p> ... </p>
        <p> ... </p>
      </li>
      <li>La solidarité
        <p> ... </p>
      </li>
      <li>La distribution
        <p> ... </p>
      </li>
      <li>Les relais du coeur
        <p> ... </p>
      </li>
      <li>Un soutien inestimable
        <p> ... </p>
      </li>
    </ul>
    <div class="image"><a href=" ... "><img src=" ... "></a></div>
  </body>
</html>