Fiche TP 3 DW
Fiche TP 3 DW
Fiche TP 3 DW
Fiche TP N°3
Exercice 1 :
Ecrivez le code suivant :
Écrire une première page en HTML contenant un titre de niveau 1 et un paragraphe. Ajouter ensuite une
liste ordonnée contenant 3 items et une liste non ordonnée contenant 2 items. Ajouter ensuite un tableau, le
résultat est le suivant :
Donnez le contenu des fichiers html et css pour avoir le résultat ci-dessus.
Solution
Exercice 2
Page.html
<html >
<head>
<title>Un essai</title >
</head>
<body>
<h1> Ceci est mon premier titre </h1>
<p> et ceci mon premier paragraphe </p>
<h2>Liste numérotée</h2>
<ol>
</ol>
<li> point numéro 1 </li>
<li> point numéro 2 </li>
<li> point numéro 3 </li>
<p>t ceci mon deuxième paragraphe </p>
<h2>Liste non numérotée</h2>
<ul>
</ul>
<li> Une chose </li>
<li> Encore une chose </li>
<h1>Ceci est un tableau qui resume les balises Html </h1>
<table>
<tr>
</tr>
<th> Nom de la balise </th>
<th> Utilisé pour dé?nir </th>
<th> balise auto-fermante </th>
<tr><td> p </td><td> un paragraphe </td><td>non</td> </tr>
<tr><td> img </td><td> une image </td><td>oui</td> </tr>
<tr><td> ol </td><td> une liste ordonnée </td><td>non</td> </tr>
<tr><td> ul </td><td> une liste non-ordonnée </td><td>non</td> </tr>
<tr><td> li </td><td> un item d’une liste </td><td>non</td> </tr>
<tr><td> h1 </td><td> un titre de niveau 1 </td><td>non</td> </tr>
<tr><td> a </td><td> un lien hypertexte </td><td>non</td> </tr>
<tr><td> br </td><td> un saut de ligne </td><td>oui</td> </tr>
</table>
</body>
</html>
Style.css
h1 {
color : red;
font- style : italic ;}
h2 {
color : green;
text-decoration : underline ; }
body {
background-color:yellow;
}
p{
text- align : justify ;}
ul, ol {
color: gray;
}
ul {
list - style -type: none;
}
Exercice 3
Page.html
Style.css
table{
width : 400px ;
border: 2px solid black;
border-collapse: collapse;
text-align: center;
}
th, td{
border : 1px solid black ;
width : 30% ;
height: 40px;
}
tr{ background-color : #DC2F2F;}
tr.impair{background-color: #F16D6D;}
tr.pair{background-color:#CB4040}
}