Created
May 4, 2020 16:37
-
-
Save wader/24e2df25e9819561ff31ad093dae87bd to your computer and use it in GitHub Desktop.
html presentation full page svg and images
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> | |
| <style> | |
| body { | |
| text-align: center; | |
| } | |
| div { | |
| display: flex; | |
| justify-content: center; | |
| height: 100vh; | |
| } | |
| img[src*=".png"] { | |
| max-height: 100vh; | |
| object-fit: contain; | |
| } | |
| img[src*=".svg"] { | |
| height: 100vh; | |
| width: 100vw; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div><img src="page1.svg" /></div> | |
| <div><img src="page2.png" /></div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment