HTML
Making links
Learn:
- How to use the
<a>tag.
- How to create basic navigation bars.
- How to create a table of contents for a long page.
Project: Making a slideshow
Learn:
- How to control a sequence of events.
- How to restart an event sequence when it gets to the end.
What images are for
You’ll learn:
- What an informational image is.
- What an interface image is.
- What a structural image is.
- The difference between a good image and a bad one.
- What basic image skills you need for Web work.
Making lists
Let's finish this lesson by looking at tags that let you create lists. There are two types of lists: unordered and ordered. You can style them with CSS.
Basic HTML tags
On the previous page, you uploaded a standard template for a Web page. Let’s add some tags to it.
On this page, you’ll learn about:
- Making headings
- Making paragraphs
- Breaking lines where you want
- Indenting
- Adding horizontal lines
The structure of a Web page
A template
Web pages are plain text files. Most have more-or-less the same structure. Here it is:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TITLE</title>
</head>
<body>
BODY
</body>
</html>
p(center).