Exercice 5: Cours d'introduction à HTML: Les tableaux

Retour à la page principale

Consigne

Reproduisez un fichier qui présente la structure ci-dessous:

Nom

W3
Ce texte est décalé vers la droite en utilisant le marqueur blockquote.

Quelques pointeurs

Voici quelques pointeurs relatifs à mes intérets:
  1. Natation
  2. Finance

Envoyez-moi vos commentaires


AIDE sur les tableaux HTML.

Solution


Patrick Jermann
Votre Nom Votre email
Votre commentaire
<html>
<head>
</title>exo1.html</title>
</head>
<body> 
<H1>Nom</H1>
<img align=right alt="W3" height=53 border=2  width=105 
src="http://tecfa.unige.ch/gif/W3-small.gif">
<blockquote>Ce texte est décalé vers la droite en utilisant le 
marqueur blockquote.</blockquote>
<H3>Quelques pointeurs</H3>
Voici quelques pointeurs relatifs à mes intérets:
<ol>
        <li>Natation
                <ul>
<li><a href="http://www.hk.super.net/~kff/wmsf.html">
        Fédération internationale de natation amateur</a>
<li><a href="http://www.yahoo.com/Recreation/Sports/Swimming_and_Diving/">
        Yahoo : Swimming and diving</a>
                </ul>
        <li>Finance
                <ul>
<li><a href="http://www.cob.ohio-state.edu/dept/fin/overview.htm">
        WWW-library: Finance</a>
<li><a href="http://www.axone.ch">Axone consulting</a>
                </ul>
        </ol>

<h2>Envoyez-moi vos commentaires</h2>
<table width=100% border=2>
        <tr>
                <td>Votre Nom
                <td>Votre email
        <tr>
                <td colspan=2>Votre commentaire
</table>
</body>
</html>