- What is HTML?
It is the code that is used to structure a web page and its content.
2.What is HTML used for?
Used for enclosing, or wrap, different parts of the content to make it appear a certain way, or act a certain way.
3.Why are we learning HTML?
To understand how our webiste content is made to be visible for the others and other “computers” interacting with it.
4.What is an HTML tag?
HTML tags states where the element starts or where the effect starts for the content that is within opening and closing tag.
5.What is the structure of an HTML tag?
Structure of the HTML tag is as following: starts with opening tag that consist of a name of the element wrapped in opening and closing angle brackets(
). Closing tag is almost the same as the opening tag except it includes a forward slash after the opening angle bracket and before the name of the element ie. (
)6.What is an attribute?
Attributes contain extra information about the element. It has the attribure name and attribute value.
7.What is the anatomy of an HTML document?
Here is an example od the anatomy of HTML document:
<!DOCTYPE html>
<head>
<title>....</title>
</head>
<body>
</body>
</html>