Last active
January 21, 2022 01:25
-
-
Save helloworldlab/91c89601d99f13b87991cb9b69a85883 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Table</title> | |
| <style> | |
| * { | |
| font-family: Arial, Helvetica, sans-serif; | |
| } | |
| table { | |
| border-collapse: collapse; | |
| } | |
| thead, | |
| tbody, | |
| tfoot, | |
| tr, | |
| td, | |
| th { | |
| border: 0 inherit solid; | |
| } | |
| table>:not(caption)>*>* { | |
| padding: 5px 10px; | |
| border: 1px solid gainsboro; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th>Column 1</th> | |
| <th>Column 2</th> | |
| <th>Column 3</th> | |
| <th>Column 4</th> | |
| <th>Column 5</th> | |
| <th>Column 6</th> | |
| <th>Column 7</th> | |
| <th>Column 8</th> | |
| <th>Column 9</th> | |
| <th>Column 10</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td>Row 1 Column 1</td> | |
| <td>Row 1 Column 2</td> | |
| <td>Row 1 Column 3</td> | |
| <td>Row 1 Column 4</td> | |
| <td>Row 1 Column 5</td> | |
| <td>Row 1 Column 6</td> | |
| <td>Row 1 Column 7</td> | |
| <td>Row 1 Column 8</td> | |
| <td>Row 1 Column 9</td> | |
| <td>Row 1 Column 10</td> | |
| </tr> | |
| <tr> | |
| <td>Row 2 Column 1</td> | |
| <td>Row 2 Column 2</td> | |
| <td>Row 2 Column 3</td> | |
| <td>Row 2 Column 4</td> | |
| <td>Row 2 Column 5</td> | |
| <td>Row 2 Column 6</td> | |
| <td>Row 2 Column 7</td> | |
| <td>Row 2 Column 8</td> | |
| <td>Row 2 Column 9</td> | |
| <td>Row 2 Column 10</td> | |
| </tr> | |
| <tr> | |
| <td>Row 3 Column 1</td> | |
| <td>Row 3 Column 2</td> | |
| <td>Row 3 Column 3</td> | |
| <td>Row 3 Column 4</td> | |
| <td>Row 3 Column 5</td> | |
| <td>Row 3 Column 6</td> | |
| <td>Row 3 Column 7</td> | |
| <td>Row 3 Column 8</td> | |
| <td>Row 3 Column 9</td> | |
| <td>Row 3 Column 10</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment