HTML_7_Link
Link
Links are created using the <a> element which has an attribute called href.
The value of the href attribute is the page that you want people to go to when they click on the link.
Users can click on anything that appears between the opening <a> tag and the closing </a> tag and will be taken to the page specified in the href attribute.
<a> other-sites.html HTML
Link Type
- Link to other website
- Link to other website with new tab
- Link to email
- Link to Top (ID) and Bottom
- Link to Pages (Same folder, Child folder, Parents folder and so on)
Link to Other Website
<a href="https://www.google.com/">Google</a>
Link to Other Website with New Tab
<a href="https://www.google.com/" target="_blank">Google New Tab</a>
Link to Email
<a href="mailto:coffeehouse@gmail.com">Email Us</a>
Link to Other Website
<a href="https://www.google.com/">Google</a>
Link to Other Website with New Tab
<a href="https://www.google.com/" target="_blank">Google New Tab</a>
Link to Email
<a href="mailto:coffeehouse@gmail.com">Email Us</a>
Link to Pages
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="admin/login.html">Login</a>
Comments
Post a Comment