Cours en Devlopement Informatique

  • HTML CSS

Les titres En HTML



l’élément title : s’inscrit dans la barre haute du navigateur

h1 à h6 : heading à l’intérieur de la page

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	<!- -Un  titre  très  important -- >
10	<h1 > Mon  titre  principal </h 1 >
11
12	<!- -Un  titre  important -- >
13	<h2 > Je suis un titre important </h 2 >
14
15	<!- -Un  autre  titre  important -- >
16	<h2 > Moi aussi , je suis un titre  important </h 2 >
17
18	<!- -Un  titre un peu  moins  important -- >
19	<h3 > Je suis un titre d importance moyenne </h 3 >
20
21	<!--Etc ,  etc. -- >
22	<h4 > Un titre pas très  important </h 4 >
23	<h5 > Un titre peu important </h 5 >
24	<h6 > Un titre vraiment peu important </h 6 >
25	</body >
26	</html >

 

Ajouter un commentaire

Veuillez vous connecter pour ajouter un commentaire.

Pas encore de commentaires.