Exercice 6: Cours d'introduction à HTML: Les Formulaires

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

Votre Nom Votre email
Votre commentaire


AIDE sur les formulaires.

Solution


<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>

<form enctype="application/x-www-form-urlencoded" 
action="mailto:Patrick.Jermann@tecfa.unige.ch" method=post>

<table width=100% border=2>
	<tr>
		<td>Votre Nom 
		<input type="text" name="nom" size=15>

		<td>Votre email
		<input type="text" name="email" size=15>

	<tr>
		<td colspan=2>Votre commentaire
		<textarea name="nom" rows=5 cols=30></textarea>
		<input type="submit" value="Envoyer">
		<input type="reset" value="Effacer">

</table>

</form>

</body>
</html>


Patrick Jermann