<p> ... </p> : paragraphes
(passage à la ligne à chaque paragraphe)
1 <!DOCTYPE html >
2 <html >
3 <head >
4 <title > Première page HTML </title >
5 <meta charset= " utf-8 " >
6 </head >
7
8 <body >
9 <!- -Deux titres h1 et h2 -- >
10 <h1 > Mon titre principal </h 1 >
11 <h2 > Je suis un titre important </h 2 >
12
13 <!- -Deux paragraphes différents -- >
14 <p > Voici mon premier paragraphe. </p >
15 <p > Et en voilà un second ! </p >
16 </body >
17 </html >
1 <!DOCTYPE html >
2 <html >
3 <head >
4 <title > Première page HTML </title >
5 <meta charset= " utf-8 " >
6 </head >
7
8 <body >
9 <!- -Les espaces ne seront pas affichés -- >
10 <h1 > Mon titre principal </h 1 >
11 <h2 > Je suis un titre important </h 2 >
12
13 <!- -br nous sert à créer des retour à la ligne -- >
14 <p > Voici <br> mon <br> premier <br> paragraphe. </p >
15 <p > Et en voilà un second ! </p >
16 </body >
17 </html>
le nombres d’espaces ne compte pas
<br> : break
Ajouter un commentaire
Veuillez vous connecter pour ajouter un commentaire.
Pas encore de commentaires.