
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Embed PDF File into an HTML5 Page
To embed a PDF file in an HTML5 page, use the <iframe> element.
<!DOCTYPE html> <html> <head> <title>HTML iframe Tag</title> </head> <body> <h1>HTML5 Tutorial</h1> <iframe src = " https://www.tutorialspoint.com/html5/html5_tutorial.pdf" style="width:500px; height:300px;"></iframe> </body> </html>
Advertisements