Home > Software design >  How to link a menu item to a PDF
How to link a menu item to a PDF

Time:12-22

I am working on a website, enter image description here

                <div >
                    <p><a href="http://assyrians.com/wp-content/uploads/2020/01/AEIPamphlet3Jan2020-converted.pdf"><span style="text-decoration: underline; color: #0000ff;">Click here to download your copy of the Assyrian electoral system pamphlet</span></a></p>
                </div>
                <div >
                    <p><iframe width="98%" height="90%Vh" title="AEIPamphlet3Jan2020-converted.pdf" src="http://assyrians.com/wp-content/uploads/2020/01/AEIPamphlet3Jan2020-converted.pdf">A PDF frame</iframe></p>
                </div>

Adjust height="90%Vh" as desired and you can optionally add sandbox attribute if desired.

  • Related