Review
Review
Congratulations on completing the first lesson of HTML! You are well on your
way to becoming a skilled web developer.
1. HTML stands for HyperText Markup Language and is used to create the
structure and content of a webpage.
2. Most HTML elements contain opening and closing tags with raw text or
other HTML tags between them.
3. HTML elements can be nested inside other elements. The enclosed
element is the child of the enclosing parent element.
4. Any visible content should be placed within the opening and
closing <body>tags .
5. Headings and sub-headings, <h1> to <h6> tags, are used to enlarge text.
6. <p>, <span> and <div> tags specify text or blocks.
7. The <em> and <strong> tags are used to emphasize text.
8. Line breaks are created with the <br>tag.
9. Ordered lists (<ol>) are numbered and unordered lists (<ul>) are bulleted.
10. Images (<img>) and videos (<video>) can be added by linking to an existing
source.