Exercice

Soit les deux références bibliographiques ci-après :

1
ADEME. « Transition(s) 2050 - Synthèse : Choisir maintenant, agir pour le climat », 2022. https://librairie.ademe.fr/cadic/6529/transitions2050-synthese.pdf.
2
IPCC. « IPCC Sixth Assessment Report : Summary for Policymakers (Climate Change 2022: Impacts, Adaptation and Vulnerability) », 2022. https://www.ipcc.ch/report/ar6/wg2/.

Question

Écrivez un fichier HTML mobilisant une liste pour afficher ces deux références. Ajoutez des liens rendre cliquables les deux URL. Ajoutez un titre "Bibliographie du changement climatique".

Solution

1
<!DOCTYPE html>
2
<html lang="fr">
3
  <head>
4
    <title>Bibliographie du changement climatique</title>
5
    <meta charset="utf-8">
6
  </head>
7
  <body>
8
    <h1> Bibliographie du changement climatique </h1>
9
    <ol>
10
      <li> ADEME. « Transition(s) 2050 - Synthèse : Choisir maintenant, agir pour le climat », 2022. https://librairie.ademe.fr/cadic/6529/transitions2050-synthese.pdf.</li>
11
      <li> IPCC. « IPCC Sixth Assessment Report : Summary for Policymakers (Climate Change 2022: Impacts, Adaptation and Vulnerability) », 2022. https://www.ipcc.ch/report/ar6/wg2/. </li>
12
    </ol>
13
  </body>
14
</html>
15