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.
1.hyper text mark-up language
2.it structures the content of the page
3.its a peace of markup language that is used to indicate the beginning and the end of the html element in a html document
4.
-paragraph
-main heading -link 5. it uses html tags to define the meaning within them 6.it helps search engines ,screen users, and other user devices understand the context of a web page's content
Welcome to my website
This is a paragraph with a bold word
.