Link to home
Start Free TrialLog in
Avatar of cano63
cano63

asked on

PDF inside an HTML

Hi people i have this html page that call a pdf and insert it in the page. For some reason when i use firefox the pdf show very small
but in the internet explorer it open normal.

What could be the problem
<!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>Page</title>
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
-->
</style></head>

<body>
<object >
  <param name=quality value=high>
  <embed src="my.pdf" quality=high width="100%" height="100%"></embed>

</object>
</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Also the embed is inside an object that may or may not have a width and height
Avatar of cano63
cano63

ASKER

i was missing that thanks