HTML
JAVASCRIPT
PHP
ASP
SQL
CSS
ET
PLUS
Accueil.Nous Joindre.HTML.JAVASCRIPT.PHP.ASP.SQL.CSS.Annonces.

Mon premier site web Mon premier site web Mon premier site web Mon premier site web Mon premier site web Mon premier site web
Recherche personnalisée
Définition des Tags « codes » HTML

Apprendre le html , JavaScript, PHP, CSS, et ASP ...

Resultat sur le navigateur sera:

2009 Copyright all rights reserved

Accueil Nous Joindre HTML JAVASCRIPT PHP ASP SQL CSS Annonces
<!-->
<!DOCTYPE>
<a>
<abbr>
<acronym>
<address>
<applet>
<area>
<b>
<base>
<basefont>
<bdo>
<big>
<blockquote>
<body>
<br>
<button>
<caption>
<center>
<cite>
<code>
<col>
<colgroup>
<dd>
<del>
<dfn>
<dir>
<div>
<dl>
<dt>
<em>
<fieldset>
<font>
<form>
<frame>
<frameset>
<head>
<h1> - <h6>
<hr>
<html>
<i>
<iframe>
<img>
<input>
<ins>
<kbd>
<label>
<legend>
<li>
<link>
<map>
<menu>
<meta>
<noframes>
<noscript>
<object>
<ol>
<optgroup>
<option>
<p>
<param>
<pre>
<q>
<s>
<samp>
<script>
<select>
<small>
<span>
<strike>
<strong>
<style>
<sub>
<sup>
<table>
<tbody>
<td>
<textarea>
<tfoot>
<th>
<thead>
<title>
<tr>
<tt>
<u>
<ul>
<var>
Insérer une image
Insérer SWF flash
Insérer media player
Inline frame Iframe
Insérer  flv flash files
HTML Elements
HTML Formatting
HTML Attributs
HTML Couleurs
HTML Liens
HTML Images
HTML Meta Tags
HTML Commentaire
HTML Forms
HTML Tables
HTML Image Carte
HTML Frames
HTML Entities
HTML Layouts
HTML Styles
HTML Scripts
HTML Templates
Website Hosting
<caption>  <td>  <th>  <table>
Le tag <caption> permet de faire preceder un tableau par titre
Le langage html offre la possiblite de creer des tableaux d’une maniere tre simple
<table>
\La definition d’un tableau en html est tres simple on vas le voir dans l’example suivant. Le but des tableaux il s’agit de la possiblite de maitriser la mise en page generale du document html
La balise englobant le code de description du tableau est <table>...<table>
<td> =Table Data Entoure les élément du tableau.
<th>=Table Header Est un élément de titre.
<caption> = Titre du tableau Permet de faire précéder le tableau d'un titre.
Exemple   d’un <tableau> avec  <caption>
<table  border =”1”>
<caption>Premier trimestre de l’annee 2009</CAPTION>
<tr>
<th>Janvier</th> <th>Fevrier</th> <th>Mars</th>
</tr>
<tr>
<td>Samedi 15 Janvier</td> <td>Samedi 12 Fevrier</td> <td>Dimanche 08 Mars</td>
</tr>
<tr>
<td>Vendredi 25 Janvier</td> <td>Mercredi 25 Fevrier</td> <td>Lundi 19 Mars</td>
</tr>
</table>
Premier trimestre de l’annee 2009
Janvier Fevrier Mars
Samedi 15 Janvier Samedi 12 Fevrier Dimanche 08 Mars
Vendredi 25 Janvier Mercredi 25 Fevrier Lundi 19 Mars