Links
How to link websites:
› This is fairly simple. There is an opening and a closing tag. The opening tag is <a href="url"> and the closing tag is </a>. all you have to do is find the link of the site(which can be found in the address bar when your viewing it), and then type or paste that link into the spot that says url in the opening tag. Make sure you take out the actual letters of url, and leave in the quotations, the link will not work without them. Inbetween the opening and closing tag, you can type what ever text you want. that text will be the shown text for the link. For example, if i wanted to make a link to yahoo.com, but make it say just yahoo, I'd do this:
<a href="http://www.yahoo.com/">Yahoo</a>
It will show up as:
Yahoo
You can also use html to insert an image inbetween the opening and closing link tags and use the image instead of text for the link, but you still have to make sure to include the actual link in the opening tag or else it will not work.
