Step 2: HTML stands for HyperText Markup Language,
and is used to make webpages. Click the icon to the right of the
Publish button in the top right. Click index.html in the list of
files. Drag the file window to the left to minimize the Agent window.
Look at the structure for your webpage:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
Line 2 is
<html>
, which is called a tag.
Line 12 is
</html>
, which closes the tag on line
2. Every webpage has an
<html>
tag that contains
the entire page, a
<head>
tag that contains things
about the page, and a
<body>
tag that contains
things on the page like text and images.