For each discussion question, please write the answer in your own words. You may also optionally comment your answers in the comment section below (if you have a GitHub account).
- What does HTML stand for?
- What is the purpose of HTML?
- What is an HTML tag?
- What does
<div>,<p>,<h1>, and<a>stand for? - What is semantic HTML?
- Why is semantic HTML important?
- Identify and fix the bug in the following code
<h1>Welcome to my website<h1>- Identify and fix the bug in the following code
<p>This is a paragraph with a <strong> bold word.
<div>: Division<p>: Paragraph<h1>: Most Important Heading<a>: Anchor<h1>Welcome to my website</h1><p>This is a paragraph with a <strong>bold</strong> word.</p>