HTML-TFT

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 Frame

3.3.4 HTML text formatting tags

HTML headings

Six levels of headings can be define in HTML from <H1> to <H6>.

Syntax:

 <H level> Heading Text</H level>

The levels of heading is from most important (<H1>) to least important (<H6>)

Example:
          <H1> Heading One </H1>                            
          .........

          .........
          <H6> Heading Six </H6>

HTML paragraphs

<p> tag is paragraph tag.                                

A blank line always separated paragraphs.

Example:       

         <p> paragraph text </p>

Line break & Horizontal Line

<BR> tag is used to start from a new line.


<HR> tag creates horizontal line in a HTML page


Example:
Text before break <Br>Text before line <HR> Text after line
Output:
Text before break

Text before line


Text after line

Bold, Italic, Underline & Centering page elements

<B> tag displays the text boldface style.

<I> tag displays the text into italics.

<U> tag display text as underlined.

<CENTER> tag is used to center any page element i.e. text, list, image, table etc.           

Example:                                                                                                       
           <B> Text </B>

           <I> Text </I>

           <U> Text </U>

            <center> text <center>

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