Embed tag length issues

I was able to figure it out. embed tags do not work with pdf’s because it does not render through the browser. Using the object tag worked:

<object data="http://example.com/wp-content/uploads/...somefile.pdf" type="application/pdf" 

width="1000px" height="1200px">

<p>It appears you don't have a PDF plugin for this browser. You can download the pdf
<a href="http://example.com/wp-content/uploads/.../somefile.pdf">here</a>
</p>

</object>