Texte en orange via attribut style de la balise h1

Avant la déclaration je peux insérer du texte. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners.

Bonjour le groupe Eurasie. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners.

Le code de ce programme est le suivant

<!DOCTYPE html>
<html>
  <header>
    <!-- On demande à télécharger la police Lobster depuis le site Google -->
    <link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet'>
    <!-- Définition de propriétés CSS via balise <style> dans <header> -->
    <!-- Ici nous définition la notion de lettrine -->
    <style>
      p::first-letter {
         font-family:lobster;
         font-size:4.5em;
         padding-right:0.2em;
         float:left;
         color:red;
      }
    </style>
    <!-- Inclusion d'un fichier CSS stocké "ailleurs" -->
    <!-- Ici nous téléchargeons le style CSS mini -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mini.css/3.0.1/mini-default.min.css">
  </header>
  <body>

     <h1 style="color: orange">Texte en orange via attribut style de la balise h1</h1>
  
     <p>Avant la déclaration je peux insérer du texte. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners.</p>

     <p>Bonjour le groupe Eurasie. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners. Our business is publishing. With more than 2,900 journals and 290,000 books, Springer offers many opportunities for authors, customers and partners.</p>

  </body>
</html>