Pages

Monday 8 September 2014

HTML Introduction

  • HTML stands for Hyper Text Markup Language
    1. HTML is a markup language
    2. A markup language is a set of markup tags
    3. The tags describe document content
    4. HTML documents contain HTML tags and plain text
    5. HTML documents are also called web pages
    6. HTML links are defined with the <a> tag:<a href="http://www.w3schools.com">This is a link</a>
    7. The link address is specified in the href attribute.
      Attributes are used to provide additional information about HTML elements.
    8. The element content is between the start and the end tag
      • HTML elements can have attributes
      • Attributes provide additional information about an element
      • Attributes are always specified in the start tag
      • Attributes come in name/value pairs like: name="value"
    9. The HTML <div> element is a block level element that can be used as a container for grouping other HTML elements.
      The <div> element has no special meaning. Except that, because it is a block level element, the browser will display a line break before and after it.

    10. sd

    No comments:

    Post a Comment