How to add a pdf file in html to see it on my website?

1

I am trying to create a section on my website with the studies I have, which are not many. I want to show the diplomas, which I have in PDF. With this code is shown, but clicking on the link: <a href="pdf/html.pdf">Haz clic aquí para el PDF</a> I would like to see them directly as if it were photos, if there is one, because I searched for google and I can not find the form. Greetings and thank you very much

    
asked by gemita 11.11.2017 в 23:51
source

1 answer

1

Using one of the following tags:

<object  data="archivo.pdf"></object>

<iframe  src="archivo.pdf"></iframe>

Here is an example with iframe: iframe example

    
answered by 12.11.2017 / 00:09
source