-
What is HTML?
It is a markup language for the internet. -
What is HTML used for?
Used to layout the web page in it’s static form. -
Why are we learning HTML?
HTML is web 1.0. This is the base of the internet and allows to output visually the layout to the users. -
What is an HTML tag?
It is a fragment of text (keyword) that starts and ends with < >. Different tags denote different elements of a web page, for example: a paragraph -
What is the structure of an HTML tag?
There is an opening tag with the opening bracket and the keywordand a closing bracket with the slash and the same keyword to en that element:
-
What is an attribute?
An attribute is a modifier to the element in question, for example size, color, etc. and is given in the opening tag. -
What is the anatomy of an HTML document?
A marker denoting the language (HTLM) , a head and a body.
< html>
< head>
< /head>
< body>
< /body >
< /html>