today i will teach you how to make link or hyper links.

the defenition of a hyper link is: An element in an electronic document that links to another place in the same document or to an entirely different document. Typically, you click on the hyperlink to follow the link. Hyperlinks are the most essential ingredient of all hypertext systems, including the World Wide Web.

[this post sponsored by www.webune.com]


so, to create a hyper link in my example, i want the following to be a link on my web page:

If you have any questions or comments on this subject, please post them here.
Hosting By Webune.com

I only want the word Webune.com as a link. so to do this i will use the <a> tag;

To make links easier to understand, i've create a sample html file you see upload to your website to see it in action. the first step is to open your text editor. if you have windows, you can use notepad.ext. open a blank notepad document and copy and paste the following:

CODE:
<html>
<head>
<title>How To create hyperlinks links in HTML documents for your websites</title>
</head>
<body>
<p><strong>How To create hyperlinks links in HTML documents for your websites </strong></p><hr />
<p>Lets say i want &quot;Hosting By Webune.com&quot; to be have a link, but only on the word &quot;Webune.com&quot; to do this, i would use the following HTML Code:</p>
<p>The Code: Hosting By &lt;a href=&quot;http://www.webune.com&quot;&gt;Webune.com&lt;/a&gt;</p>
<p>This is how the HTML code looks like: Hosting By <a href="http://www.webune.com">Webune.com</a></p>
<p><a href="http://www.wallpaperama.com/forums">Go Back &lt;&lt; </a></p>
<p align="center">Hosting By <a href="http://www.webune.com">Webune.com</a></p>
</body>
</html>


now save this text file as "links-tutorial.html" and upload to your website to see it in action. If you don't have a website, our friends at webune.com have provided us with hosting to show you how the links-tutorial.html file looks like.

This is An Example of a Hyper Link: Learn How To Make Hyper Links In Web Pages HTML Tutorial Guide Easy Help

If you have any comments or questions, please post them here.
Wallpaperama Team