our approach
|
new tutorials
|
contact us
HTML & CSS In Pictures
HTML Basics
Navigation & Layout
Interactivity
Advanced Layout
Link to an external site
In Notepad, add a new paragraph below the email link. Type:
<p>Please also visit www.dogs.com.</p>
Surround the Web address
www.dogs.com
with these anchor tags to link it to the external Web site:
<a href="http://www.dogs.com" target="_blank">
www.dogs.com
</a>
TIP:
For an external link to work, you must type
http://
as part of the Web address.
The attribute
target="_blank"
opens a new browser window to display the external site.
<< BACK
NEXT >>