- Computer Using
- Windows
- Browser
- How-To
- Microsoft Office
- MS Word
- MS Excel
- MS Outlook
- MS PowerPoint
- Graphic / Design
- Photoshop
- Illustrator
- Server & Network
- Computer Networking
- Internet
- Windows Server
- Web Development
- HTML
- Javascript
- CSS
- ASP.NET
- PHP
- Animation
- Flash
- Silverlight
- Database
- Database System
- SQL Server
- T-SQL
- XML
- XML
Creating Link
Link use to open page in HTML. You can use link to open website or webpage, link from top to bottom or bottom to top or middle page, link to email, etc.
HTML uses a hyperlink to link to another document on the Web.
To link to top, middle, buttom or other point you can use with Anchors.
HTML you can create link Your Email Address into a Page
Write HTML Code
1. <html> 2. <head> 3. <title>Link page</title> 4. </head> 5. <body> 6. This Anchors link to bottom <a href="#bottom" > Go to bottom </a> <br> 7. <a id="top"> <h1>Prasat Preah Vihear</h1> 8. <p>Cambodia’s revered temples located on the plateau of Dângrêk Mountains 9. in Preah Vihear Province, Cambodia. Preah Vihear belongs to Cambodia, 10. though some of the outter areas are still under Thailand’s control. 11. The temple has beautiful views all around and has the most spectacular 12. setting of all the temples built during the six-century-long Khmer Empire. 13. </p></a> 14. 15. This link use for link to website or webpage 16. <a href="http://www.ant.com.kh" alt="Go to ANT website" >www.ant.com.kh </a> <br> 17. This link use for send Email 18. <a href="mailto:mymail@example.com" > Send Email </a> <br> 19. <a id="bottom" > 20. <a href="#top" >Go to Top </a> 21. 22. </body> 23. </html>When you type HTML code above please don't put number such as: 1. 2. and so on, I use them to explain only.
Explain
Line 6.(<a>) user to open tag link. href="#bottom" use to link to bottom anchors point (<a id="bottom">)
<br> tag use to break a new line
Line 7.(<a id="top"> use to create anchors point. top is the name of anchors point that you want create
Line 8 to 13.(<p>...</p>) p stand for paragraph. p tag you can break new line without use <br> tag. or you can have alots spaces with out code . and this tage will display all what you type to broswer.
Line 16: (<a href="http://www.ant.com.kh">www.ant.com.kh</a>) this line will display
www.ant.com.kh when you click this word it
will link to website ANT Magazine.
(alt="Go to ANT website") this alt attribute use to tell the
you when overmouse on the link text
Line 18: (<a href="mailto:mymail@example.com">....</a>) this line use to send email. mailto it mean send email to. mymail@example.com is the email of ant.
Result
This Anchors link to bottom Go to bottomPrasat Preah Vihear
Cambodia’s revered temples located on the plateau of Dângrêk Mountains in Preah Vihear Province, Cambodia. Preah Vihear belongs to Cambodia, though some of the outter areas are still under Thailand’s control. The temple has beautiful views all around and has the most spectacular setting of all the temples built during the six-century-long Khmer Empire.
This link use for link to website or webpage www.ant.com.khThis link use for send Email Send Email
Go to Top

