Answers 100% Correct
What is an example of a title tag?
✔✔`<title>Page Title</title>`
What is an example of a paragraph tag?
✔✔`<p>This is a paragraph.</p>`
What is an example of a header tag?
✔✔`<h1>Main Heading</h1>`
What is an example of an image tag?
✔✔`<img src="image.jpg" alt="Description">`
What is an example of an unordered list?
✔✔`<ul><li>Item 1</li><li>Item 2</li></ul>`
1
, What is an example of an ordered list?
✔✔`<ol><li>First Item</li><li>Second Item</li></ol>`
What is an example of a link?
✔✔`<a href="https://www.example.com">Visit Example</a>`
What is an example of a blockquote?
✔✔`<blockquote>This is a quote.</blockquote>`
What is an example of a footer tag?
✔✔`<footer>Footer content here</footer>`
What is an example of a strong tag?
✔✔`<strong>Important text</strong>`
What is an example of an emphasis tag?
✔✔`<em>Emphasized text</em>`
2