introduction to Html
Basic information
HTML is a markup language for describing web documents (web pages).
- HTML stands for "HyperText Markup Language"
- A markup language is a set of markup tags
- HTML documents are described by HTML tags
- Each HTML tag describes different document content.
History of Html and its versions
HTML Table
| Html version Name | Lanching Year | Rejected Year |
|---|---|---|
| HTML | 1991 | 1995 |
| HTML 2.0 | 1995 | 1997 |
| HTML 3.2 | 1997 | 1999 |
| HTML 4.01 | 1999 | 2000 |
| XHTML | 2000 | 2014 |
| HTML 5.0 | 2014 | Yet Working |
HTML Tags
HTML tags are keywords (tag names) surrounded by angle brackets:
<tagname>content</tagname>
- HTML tags normally come in pairs like <p> and </p>
- The first tag in a pair is the start tag, the second tag is the end tag
- The end tag is written like the start tag, but with a slash before the tag name


0 comments:
Post a Comment