Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
How do you make a clickable link?
How do you make a clickable link without using the whole http address?
( like in this : You know that you should clean the outside of your computer screen every so often. However, did you know that you're supposed to clean the inside of the screen, too? Not many people know this or how to do it. So, here's a complimentary cleaning. here. [<<<<right there] )
7 Answers
- Anonymous9 years agoFavorite Answer
1. you can say <a href="www.yourlinkaddress.com">here</a>
2. if you want to make the link open a new window or tab (it depends on the browser settings) you can say <a href="www.yourlinkaddress.com" target="_blank">here</a>
3. if you want to go a little bit more advance, you can do it with javascript by saying <span onclick="javascript:window.location = 'www.yourlinkaddress.com';">here</span>
- NikLv 79 years ago
Links can be placed inside paragraphs.
<p>
You know that you should clean the outside of your computer screen every so often. However, did you know that you're supposed to clean the inside of the screen, too? Not many people know this or how to do it. So, here's a complimentary cleaning. <a href="">here</a>
</p>
If the link is linking to your site you don't need the full HTTP address if it isn't then you do.
- Anonymous9 years ago
<a href="url">Link text</a>
Where it says "url" is where you put the whole http address. Where it says Link Text is where you would put what you want the link to look like. Here it is using your example:
You know that you should clean the outside of your computer screen every so often. However, did you know that you're supposed to clean the inside of the screen, too? Not many people know this or how to do it. So, here's a complimentary cleaning <a href="http://www.insertaddyhere.com">here.</a%3E
- Anonymous9 years ago
You know that you should clean the outside of your computer screen every so often. However, did you know that you're supposed to clean the inside of the screen, too? Not many people know this or how to do it. So, here's a complimentary cleaning. <a href="http://yoursitelink.com">here</a%3E.
- How do you think about the answers? You can sign in to vote the answer.
- LizLv 79 years ago
You know that you should clean the outside of your computer screen every so often. However, did you know that you're supposed to clean the inside of the screen, too? Not many people know this or how to do it. So, here's a complimentary cleaning. < a href = 'http://the.webpage.you.want.to.go.to"/ > Here </a>
- David KLv 69 years ago
The solution is to use the <a link in html... e.g....
...complimentary cleaning <a href="cleaningpage.html">here</a> assuming that cleaningpage.html is a page on your website. if the page is not within your website then the full url is needed, e.g., "href="http://www.cleaningpage.html"/ it's pretty simple and there are other options for the link, but this should get you going. good luck.