Link – HTML
The following is the code needed to create a link using Html,

<a href=” – this is the opening code,
Replace the httpl://www.go-nowhere.com/link.html with your own link.
Make sure you’ve closed the link by adding “ after you’ve finished.
The next bit of code to look at is the,
target=”_parent” – This decides how the link will work, wether it opens within the window or opens a new window.
target=”_blank” - _parent opens within the window, _blank opens a new window.
>Link Title< - this part of the html is the part you see in your page, Link Title can be replaced with your own text. Don’t forget the > and the < surrounding the text.
Finally you need to close the html with,
/a>.
If you try this code and it doesn’t work then please look over your html and check for typing errors or missed code.
leave a comment