Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Le titre du document.</title> </head> <body> <table summary="Goalscorers" width="400" border="1"> <caption> Meilleurs buteurs de la Coupe du Monde de la FIFA 2018 <hr> </caption> <thead> <tr> <th>Nom</th> <th>Pays</th> <th>But</th> </tr> </thead> <tfoot> <tr> <th colspan="3">Harry Kane - le meilleur joueur!</th> </tr> </tfoot> <tbody> <tr> <td>Harry Kane</td> <td>Angleterre</td> <td>6</td> </tr> <tr> <td>Christiano Ronaldo</td> <td>Portugal</td> <td>4</td> </tr> <tr> <td>Neymar</td> <td>Brésil</td> <td>2</td> </tr> </tbody> </table> </body> </html>