How to Show PDF within Web Page? - BunksAllowed

BunksAllowed is an effort to facilitate Self Learning process through the provision of quality tutorials.

Community

demo-image

How to Show PDF within Web Page?

Share This

Sometimes, a PDF file needs to be displayed on a web page instead of downloading it. The PDF document needs to be shown on an area of the web page. To achieve this, you may try the following code.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<br>
<object data="xyz.pdf" type="application/pdf" width="800" height="400">
alt : <a href="xyz.pdf">xyz.pdf</a>
</object>
</body>
</html>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Happy Exploring!

Comment Using!!

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.