+ 1

How to link to a document.finding it hard

13th Aug 2018, 7:33 AM
Felix
2 Answers
+ 2
In HTML you can create a link to anywhere by using this syntax 👇 <a href="google.com">Text</a>
13th Aug 2018, 8:15 AM
Joshua Raison
Joshua Raison - avatar
+ 1
Hi Felix, In additional to Joshua Raison answer. You can open a new window/tab when the link is clicked. Your document can be all kind of extensions. <!-- PDF extension --!> <a href="your document.pdf" target="_blank" \> <!-- TXT extension --!> <a href="your document.txt" target="_blank" \> <!-- XML extension --!> <a href="your document.xml" target="_blank" \>
13th Aug 2018, 9:53 AM
🌴Vincent Berger🌴
🌴Vincent Berger🌴 - avatar