- HTML stands for Hyper Text Markup Language.
- An HTML page has "tags" (containers for content) which define
the structure and purpose of the content.
<p>this is a paragraph tag, it also has an end tag.</p>
- Tags have "attributes," which allow you to extend the
capabilities of the tag. Attributes are always followed by "="
(equal sign). Attribute contents (values) are always enclosed in quotes.
<h1 align="center">A centered Heading</h1>
align is the attribute
"center" is the value