-
What is HTML?
HTML is a markup language -
What is HTML used for?
used to define the structure of the content. -
Why are we learning HTML?
to be able to create a dapp -
What is an HTML tag?
it is a piece of code containing the name of the element that is placed in the beginning and end of each element wrapped in open and closed brackets and the end containing also a forward slash. -
What is the structure of an HTML tag?
</name of element> -
What is an attribute?
is something carring extra content of the element that we donât want it to be seen in the actual content. -
What is the anatomy of an HTML document?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My test page</title>
</head>
<body>
<img src="images/firefox-icon.png" alt="My test image">
</body>
</html>