Mise en page html css en forme de tableau
Fermé
momo1
-
21 avril 2010 à 12:15
mickeyjuve Messages postés 131 Date d'inscription vendredi 28 novembre 2008 Statut Membre Dernière intervention 3 août 2011 - 21 avril 2010 à 16:00
mickeyjuve Messages postés 131 Date d'inscription vendredi 28 novembre 2008 Statut Membre Dernière intervention 3 août 2011 - 21 avril 2010 à 16:00
A voir également:
- Mise en page html css en forme de tableau
- Mise en forme conditionnelle excel - Guide
- Mise en forme tableau word - Guide
- Mise en forme tableau croisé dynamique - Guide
- Imprimer tableau excel sur une page - Guide
- Tableau ascii - Guide
1 réponse
mickeyjuve
Messages postés
131
Date d'inscription
vendredi 28 novembre 2008
Statut
Membre
Dernière intervention
3 août 2011
17
21 avril 2010 à 16:00
21 avril 2010 à 16:00
Salut,
Est ce que c'est ca que tu veux:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<table border="1" width="500px">
<tr id="Header" style="background-color: #FF99CC">
<td colspan="3">
<p>Header</p>
</td>
</tr>
<tr id="Menu">
<td>
<p>Home</p>
</td>
<td>
<p>Products</p>
</td>
<td>
<p>Contact us</p>
</td>
</tr>
<tr id="Body" style="height: 300px">
<td colspan="3"></td>
</tr>
<tr id="Footer" style="background-color: #99FF66">
<td colspan="3">
<p>Footer</p>
</td>
</tr>
</table>
</body>
</html>
Est ce que c'est ca que tu veux:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<table border="1" width="500px">
<tr id="Header" style="background-color: #FF99CC">
<td colspan="3">
<p>Header</p>
</td>
</tr>
<tr id="Menu">
<td>
<p>Home</p>
</td>
<td>
<p>Products</p>
</td>
<td>
<p>Contact us</p>
</td>
</tr>
<tr id="Body" style="height: 300px">
<td colspan="3"></td>
</tr>
<tr id="Footer" style="background-color: #99FF66">
<td colspan="3">
<p>Footer</p>
</td>
</tr>
</table>
</body>
</html>