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.
-
is paragraph,
is heading and 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.
Welcome to my website
This is a paragraph with a bold word