-
What is HTML?
Hypertext Markup Language -
What is HTML used for?
is the code that is used to structure a web page and its content. -
Why are we learning HTML?
to build a front end which can be connected to a blockchain -
What is an HTML tag?
for every element an opening and closing tag is needed. -
What is the structure of an HTML tag?
opening tag: <…>
closing tag: <…/> -
What is an attribute?
extra information about an element -
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