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.
HTML stands for Hypertext markup language
HTML is used for structuring a webpage.
An HTML tag is a container that contains certain information about a webpage.
<div>divider<p>paragraph<h1>heading<a>referenceSemantic HTML defines the meaning of a piece of code.
It makes it easier to read the code and provides a consistent structure.
The closing tag doesn't have a forward slash.
<h1>Welcome to my website</h1><p>This is a paragraph with a<strong>bold word.</strong></p>