Bonjour.
est-ce que ceci est correct?
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 <html> <body> <table> <tr> <td><form> </td> </tr> <tr> <td> </td> </tr> <tr> <td></form> </td> </tr> </table> </body> </html>
Version imprimable
Bonjour.
est-ce que ceci est correct?
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 <html> <body> <table> <tr> <td><form> </td> </tr> <tr> <td> </td> </tr> <tr> <td></form> </td> </tr> </table> </body> </html>
Bonjour, non ce n'est pas correct, tu doit toujours fermer tes balises dans l'ordre où elles ont été ouverte.
Bon courage
En revanche tu peux faire comme ceci :
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 <form> <table> <tr> <td> </td> </tr> <tr> <td> </td> </tr> <tr> <td> </td> </tr> </table> </form>
Merci !!
:ccool: