HTML stands for Hyper Text Markup Language
HTML is the standard markup language for Web pages
HTML elements are the building blocks of HTML pages
HTML elements are represented by <> tags
HTML Elements
An HTML element is a start tag and an end tag with content in between:
This is a Heading
Start tag | Element content | End tag |
---|---|---|
This is a Heading | ||
This is paragraph. |
HTML Attributes
- HTML elements can have attributes
- Attributes provide additional information about the element
- Attributes come in name/value pairs like charset=”utf-8″
A Simple HTML Document
This is a Heading
This is a paragraph.
This is another paragraph.