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.
Hyper Text Mark-up Language
We use HTML to structure the webpage
A piece of markup language used to indicate the start and end of a page of an HTML element in an HTML document.
<div> is division,<p> is paragraph,<h1> is heading and <a> is a hyperlink.A markup language that uses standardized names for elements to describe the content of web pages.
It uses standardized names for elements and makes the code more understandable for developers,it can be understood by most by a greater variaty of devices as well as improve search engine optimization.
<h1>Welcome to my website</h1><p>This is a paragraph with a <strong>bold </strong> word</p>