Created
September 24, 2018 23:35
-
-
Save pindlebot/d8c6b819a6408824f0719ac766287332 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, chrome=1" /> | |
| <title>Homework 3</title> | |
| <link rel="stylesheet" href="./homework3.css" /> | |
| </head> | |
| <body> | |
| <div> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th>Best Crime Movies</th> | |
| <th>Year</th> | |
| <th>Director</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td>The Godfather</td> | |
| <td></td> | |
| <td>Francis Ford Coppola</td> | |
| </tr> | |
| <tr> | |
| <td>Goodfellas</td> | |
| <td></td> | |
| <td>Quentin Tarantino</td> | |
| </tr> | |
| <tr> | |
| <td>Pulp Fiction</td> | |
| <td></td> | |
| <td>David Mackenzie</td> | |
| </tr> | |
| <tr> | |
| <td>Hell or High Water</td> | |
| <td></td> | |
| <td>Bryan Singer</td> | |
| </tr> | |
| <tr> | |
| <td>The Usual Suspects</td> | |
| <td></td> | |
| <td>Bryan Singer</td> | |
| </tr> | |
| <tr> | |
| <td>Fargo</td> | |
| <td></td> | |
| <td>The Coen Brothers</td> | |
| </tr> | |
| <tr> | |
| <td>The Departed</td> | |
| <td></td> | |
| <td>Martin Scorsese</td> | |
| </tr> | |
| <tr> | |
| <td>Baby Driver</td> | |
| <td></td> | |
| <td>Edgar Wright</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment