Created
November 14, 2023 11:16
-
-
Save ndamulelonemakh/4172bf3361d531be756c1092e0c85816 to your computer and use it in GitHub Desktop.
HTML Snippets - less JS, less npm install
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 name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Native HTML PDF Preview</title> | |
| </head> | |
| <body> | |
| <div style="display: block; height: 900px; background-color: aqua;"> | |
| <object | |
| data="/assets/data.pdf" | |
| type="application/pdf" | |
| width="50%" | |
| height="900" | |
| > | |
| <p> | |
| Alternative text - include a link | |
| <a href="http://somewhere.com/docs/data.pdf">to the PDF!</a> | |
| </p> | |
| </object> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment