How to give an link to another website ?
->
How do we use html and give a link to another website ? It is so easy and simple. <a> opens an link and inside <a> you need to put in where its going to go and how it’s going to go. For Example <a target”new”> says that the link will open in a new window.
<a target=”new” href=”http://www.2-create-a-website.com”> means it will open in a new window and goto 2-create-a-website.com. <a target=”new” href=”http://www.2-create-a-website.com”>Click Here</a> means the text “click here” will be shown and when you click it will open in a new window and goto 2-create-a-website.com and you probably figured out that </a> closes the link.
And there you go, learned something new.
