HTML-Elements

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.1 HTML elements

Hyper Text Markup Language (HTML) is the markup language for describing web pages.

        HTML is a set of markup tags

        Markup tags are the basic building block for the development of web pages.

Syntax of HTML tag/element:                       
<Start tag> Content </End tag>

HTML tag

Tag is a keyword enclosed in angle brackets.

Normally tags have one start tag/ opening tag(<tag>) and one end tag/ closing tag(</tag>) are called container tags.

There can be elements which is not having any end/closing tag they are called empty tags.

3.3.3.2 HTML Document structure

Every HTML document is enclosed within <HTML> and </HTML> tag.

Within this two distinct sections are created.

<HEAD> tag

        Document head that describes title of the web page.

<BODY> tag

        The main body, where the information is displayed in the browser.

<HTML>
    <HEAD>
        <TITLE>
                Title of the web page
        </TITLE>
    </HEAD>
    <BODY>
              The content of the web page .
    </BODY>
</HTML>

3.3.3.3 HTML attributes

HTML attributes are additional information about an HTML element. Attributes are always declared in the start tag/opening tag.

<tag attribute= “Value”> Content </tag>  Attribute values are enclosed in quotes.

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