kreamo
Messages : 22 Points : 5443 Date de naissance : 14/07/1989 Date d'inscription : 23/02/2010 Age : 35 Localisation : Mohammedia Emploi/loisirs : ta 7aja!hh!
| Sujet: TP2 HTML S4 Dim 7 Mar - 10:00 | |
|
Voila le code source du 1er TP Langage HTML pour ce semestre bon le code est simple, commenter, mais ça empêche d'en discuter si vous rencontrez des difficulté ....Page N°1 : INDEX.HTML - Code:
-
<head>
<title>index</title> </head> <body> <center> <!--Alignement : centré--> <a href="fac.html"><!-- un lien vers une page fac.html--> <img src="logo.png" alt="site de la facult� des sciences Ben M�Sik " border="0" width="205" height="219" > <!--Le logo de la fac Hauteur : 219px; Largeur : 205px;Texte alternatif : « site de la faculté des sciences Ben M’Sik »--> </a> </center> </body> </html>
voir----> index.htmlPage N°2 : FAC.HTML
- Code:
-
<html> <head> <title> fac.html</title>
</head> <body>
<map name="menu"> <area href="fili�reSMI.html" shape="circle" coords="265,63,65"><!--coords="X,Y,r" // O(X,Y) est le centre du cercle creé par shape="circle" --> <area href="fili�reSMP.html" shape="circle" coords="68,254,63"> <area href="Index.html" shape="circle" coords="256,251,91"> <area href="fili�reSMA.html" shape="circle" coords="444,250,65"> <area href="fili�reSVTU.html" shape="circle" coords="256,440,66"> </map> <center> <img src="menu.png" alt="choix de menu" usemap="#menu" border="0"> </center> </body>
</html>
voir----> fac.html | |
|