iPad Air 2 une aide pour créer une page web avec une couleur de fond code HTML

j’avais testé plusieurs solutions :

1- body {
color:black;
background-color:red;
}

2-<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>

<style type="text/css">
body {background-color:#f10600; color:#fff}
</style>

</head>

<body>

... contenu...

</body>
</html>

3-
<!DOCTYPE html>
<html>

<body>
body {
background-color: lightblue;
}

</head>

<body>

<head>

<style type="text/css">
body {background-color:#f10600; color:#fff}
</style>



<html>
<head>

<title>Page Title</title>



</head>

</html>

4- <!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: lightblue;
}

h1 {
color: white;
text-align: center;
}

p {
font-family: verdana;
font-size: 20px;
}
</style>
</head>
<body>

<h1>My First CSS Example</h1>
<p>This is a paragraph.</p>

</body>
</html>

malheureusement aucune ne marche !

testez mes HTML de 1 à 4 et dites-moi si ça marche bien chez vous ?
merci beaucoup
 
Un exemple en me basant sur tes tests :)

Bloc de code:
<!DOCTYPE html>
<html lang="fr">
<head>
  <title>Titre de la page</title>
  <meta charset="UTF-8">
  <style>
    body {
      background-color: #f10600;
      color: #000000;
    }
   
    h1 {
      color: #ffffff;
      text-align: center;
    }
   
    p {
      font-family: verdana;
      font-size: 20px;
    }
  </style>
</head>
<body>
  <main>
    <h1>Mon premier exemple CSS</h1>
    <p>Paragraphe</p>
  </main>
</body>
</html>

Liens utiles :
 
Voici ce que ça devrait donné (code enregistré en tant que fichier html) :
Capture d’écran 2018-06-20 à 20.56.44.png

Qu'as-tu de ton côté ?
 
Balises
Bloc de code:
<style type="text/css">
<!--
-->
</style>

Soit :
Bloc de code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<HTML>
<HEAD>
<STYLE type="text/css">
<!--

Définition des styles;

-->
</STYLE>
</HEAD>
<BODY></BODY>
</HTML>
 
C’est tout simple en fait.
Dans le HEAD tu rajoute ceci :

<style>
body {
background: blue;
}
</style>

PS. Tu insères ta couleur