What is HTML?
Hypertext Markup Language.
HTML is the code that is used to structure web pages
and their contents. The content can be structured as
titles or paragraphs, for example.
What is HTML used for?
HTML is used for structuring things like titles,
paragraphs and images on a web page and giving
names to certain elements to reference in CSS.
Why are we learning HTML?
To learn to use the text editors and learn basic
programming. To be able to build a frontend for dApps.
What is an HTML tag?
A HTML tag is a prefix and suffix that is added to
a piece of content to define what it is.
What is the structure of an HTML tag?
< opening-tag class=âclass-nameâ > content < /closing-tag >
What is an attribute?
An attribute is a class, usually added to divs (but
can be added to other tags) to be able to reference
that certain element later in CSS for styling.
What is the anatomy of an HTML document?
Must include !DOCTYPE and html tags, head
tags and body tags. See below.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>