Last active
July 8, 2018 18:44
-
-
Save Jolaolu/ea3f684813f730e10c8abe71a89fbdd7 to your computer and use it in GitHub Desktop.
html file for responsive images gallery
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
| <html> | |
| <head> | |
| <title>Responsive Gallery<title> | |
| <link rel="stylesheet" type="text/css" href="styles.css"> | |
| </head> | |
| <body> | |
| <div class='container'> | |
| <div><img src=''/></div> | |
| <div><img src=''/></div> | |
| <div><img src=''/></div> | |
| <div><img src=''/></div> | |
| <div><img src=''/></div> | |
| <div><img src=''/></div> | |
| </div> | |
| </body> | |
| </html> |
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
| .container{ | |
| display :flex; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment