HTML-HL

From WikiEducator
Jump to: navigation, search
Uou-logo-100px.png
Home  |  About UOU  |  About CEMCA  |  Contact Us    

Unit 3.3 Web application development tools & Technologies


3.3.3 HTML

3.3.3.1 HTML elements

3.3.3.2 HTML document structure

3.3.3.3 HTML attributes

3.3.3.4 HTML text formatting tags

3.3.3.5 Lists

3.3.3.6 Graphics to HTML document

3.3.3.7 Tables

3.3.3.8 HTML hyperlinks

3.3.3.9 Frames


3.3.3.8 HTML Hyperlinks

A hyperlink is a link (word/sentence/image) that you can click on to jump on new document or a new section in current document.

Syntax:

           <A href=”url”> link </A>
herf attribute specify the destination link.

External document reference:

Link will be displayed as hyperlink, and link to another document, document which is present in the current working directory. If file is not present in current directory, a relative path can be specified as the attribute value.

Example:
          <A href=” document1.htm”> link to document1 </A>

Internal document reference:

This provides a link to jump a different location in the same document. First you have to identify a location with the name and then jump to that location using the name.

Syntax:
            <A Name=”location_name”>
            <A href=”#location_name”> Link </A>

Example:
            <A Name=”top”>
           <A href=”#top> Top Hyperlink</A>

  1. indicates that a jump is required within the same document. On clicking the Top Hyperlink the control goes to the location named as top.
Next
Suggested Reading
  • Reading 01 Title
  • Reading 02 Title
  • Reading 03 Title


 Suggested Videos
  • Video 01 Title
  • Video 02 Title
  • Video 03 Title


Suggested Audio
  • Audio 01 Title
  • Audio 02 Title
  • Audio 03 Title