- 720p
- 540p
- 360p
- 0.50x
- 0.75x
- 1.00x
- 1.25x
- 1.50x
- 1.75x
- 2.00x
We hope you enjoyed this lesson.
Cool lesson, huh? Share it with your friends
About this lesson
Exercise files
Download this lesson’s related exercise files.
Creating HTML Links59.3 KB Creating HTML Links - Solution
59 KB
Quick reference
Creating HTML Links
All web pages contain links. In this videos we'll learn about internal and external links.
When to use
Links are used whenever you want to add the ability to navigate between different web pages or web sites.
Instructions
Internal links look like this:
<a href="page2.html">Page 2</a>
External links look like this:
<a href="http://google.com">Google</a>
To open a link in a new web browser window, use a target attribute:
<a href="http://Google.com" target="_blank">Google</a>
Hints & tips
- Here's an internal link: <a href="page2.html">Page 2</a>
- Here's an external link: <a href="http://google.com">Google</a>
- To open a new web browser window: <a href="http://Google.com" target="_blank">Google</a>
Lesson notes are only available for subscribers.