This is an ad.
 
Webmonkey Kids
Webmonkey Kids
Lessons
Projects
Playground
Tools

Introduction
What Are Tags?
Closing Tags
Using Tags
Getting Started
Make Your First Web Page
Fixing Your First Web Page



Parents and Teachers:
Find out how your kids can use Webmonkey for Kids as a learning tool at home or in the classroom with our Planning Guide.

Send us feedback

Lesson A: What Is HTML?
What Are Tags?


ags are letters or words between two brackets, like this: <tag>. There are a whole bunch of these tags, and learning HTML pretty much means learning all the various tags.

Each tag does a different thing. For example, there's one that will make your text bigger, another that will center it on the page, and another that will create a link somewhere else. So what you do is pick the tag that you want to use, then put it right in front of the word that you want to change. This tells the browser that it's supposed to do something there.

Let's say you want the word "staplers" to be boldfaced. Bold text is used to emphasize words, and "staplers" is the most important word on your page. Well, you need to tell the Web browser that you want "staplers" in bold, so you use the bold tag, which looks like this:

<b>

"B" stands for "bold." Most tags use abbreviations like this, making them pretty easy to remember. So the tag is telling the browser, "Look, buddy, I want everything after me to be in boldface." The Web browser does what it's told and makes the word bold.

Back

Next Page