Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <!-- This table is intentionally unstyled to serve as a clean starting point. --> <!-- All visual presentation is left to your own CSS or the browser's default stylesheet. --> <table> <thead> <tr> <th scope="col">Name</th> <th scope="col">Instrument</th> <th scope="col">Band</th> <th scope="col">Hometown</th> </tr> </thead> <tbody> <tr> <td>John Lennon</td> <td>Rhythm Guitar</td> <td>The Beatles</td> <td>Liverpool</td> </tr> <tr> <td>Paul McCartney</td> <td>Bass Guitar</td> <td>The Beatles</td> <td>Liverpool</td> </tr> <tr> <td>George Harrison</td> <td>Lead Guitar</td> <td>The Beatles</td> <td>Liverpool</td> </tr> <tr> <td>Ringo Starr</td> <td>Drums</td> <td>The Beatles</td> <td>Liverpool</td> </tr> </tbody> </table>