Introduction HTML

HyperText Markup Language is the standard markup language for documents designed to be displayed in a web browser.

It defines the content and structure of web content. It is often assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript.

Some HTML elements have no content (like the
element). These elements are called empty elements. Empty elements do not have an end tag!

With HTML you can create your own Website.HTML is easy to learn - You will enjoy it!

HTML Basic Examples

In this chapter we will show some basic HTML examples.Don't worry if we use tags you have not learned about yet.

  1. !DOCTYPE html: html file start with this.
  2. opening and closing tag of html.
  3. opening and closing tag of head.
  4. oprning and closing tag of title.
  5. opening and closing tag of body.
          students result="score"
            
  • first grade
  • second grade
  • HTML Styles

    Setting the style of an HTML element, can be done with the style attribute.The HTML style attribute has the following syntax:

    HTML Lists

    HTML lists allow web developers to group a set of related items in lists. so can be orderd list and unorderd list.

    HTML Atrributes

    HTML attributes provide additional information about HTML elements.

    An HTML element is defined by a start tag, some content, and an end tag.

    HTML elements can be nested (this means that elements can contain other elements).All HTML documents consist of nested HTML elements.