Working With Links and Embedded Content
Working With Links and Embedded Content
Working With Links and Embedded Content
or
<a href=D:\folder\page.html>Text</a>
Pathnames
href=/Web site/pages/pagename.html
href=/d:/Web site/pages/pagename.html
href=/disk name/pages/pagename.html
Meaning
The file, pagename.html is located in the pages folder,
which is in the Web site folder.
The file, pagename.html is located in the pages folder,
which is located in the Web site folder in the d: drive.
The file, pagename.html is located in the pages folder,
which is located in the same hard disk drive called disk
name. This way of using absolute filename is usually done
when you are using Macintosh.
<img src=http://www.loremipsum.com/image.jpg>
Make it a practice to add ALT attributes to your images. Using ALT provides a description or a name to your
image. For example, an image of a dog in your HTML document may be called My dog. To insert the ALT
attribute in your image, you may write the code as:
Adding Tables