Created
March 31, 2014 14:13
-
-
Save stripthis/9893182 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
| body { | |
| background:#FFF; | |
| font-family:sans-serif; | |
| } | |
| table { | |
| border:1px solid #CCC; | |
| border-collapse:collapse; | |
| text-align:left; | |
| } | |
| table th, | |
| table td { | |
| border:1px solid #CCC; | |
| padding:10px; | |
| } | |
| table th { | |
| background:#EEE; | |
| } |
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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <table> | |
| <tr> | |
| <th>Name</th> | |
| <th>Type</th> | |
| <th>Id</th> | |
| <th>Year</th> | |
| </tr> | |
| <tr> | |
| <td>Esperanza</td> | |
| <td>Expedition/research ship</td> | |
| <td>1984</td> | |
| <td>PD 6464</td> | |
| </tr> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment