Course Content
Ultimate HTML
Paired Tags
Paired tags consist of opening and closing tags. They can wrap around the content, group items in order to change some properties or collect elements by meaning.
index.html
index.css
index.js
Single tags
Single Tags consists of an opening tag. All content and behavior gets in form of attributes.
index.html
index.css
index.js
Tag nesting
When nesting tags, it's important to follow the hierarchy order, much like nesting dolls, while still following the rules of HTML syntax.
Let’s consider the next valid example:
index.html
index.css
index.js
<p>
- defines a paragraph (parent element);
<a>
- defines a hyperlink (child element);
<em>
- marks text that has stress emphasis (child element);
What division of tags exists in HTML?
Select the correct answer
What variant is valid markup?
Select the correct answer
What variant is valid markup?
Select the correct answer
Section 2.
Chapter 3