Hey sawadnet2. Here is the HTML for creating links:
HTML Code:
<a href="yourlinkurlhere">yourlinktexthere</a>
For example:
HTML Code:
<a href="http://halophoenix.blogspot.com/>Halo Phoenix</a>
This would create the link:
Halo Phoenix
Let me take the HTML apart for you:
<a href - Tells the browser to start the link
="yourlinkurlhere" - Tells the browser what the link leads to
>yourlinktexthere - Tells the browser what to put for the link
</a> - Tells the browser to stop the link, preventing all the rest of your words becoming a link
I hope this helps! Just tell me if this is a little bit foggy. I also hope this is what you were looking for

!