|
|
Index
1
- Getting Started
2
- Getting Started
3
- Getting Started
4
- Getting Started
5
- Getting Started
6
- Paragraph tags
7 - Bold tags
8
- More tags
9
- Extended Syntax
10 -
Font tags
11 -
Font tags (cont)
12 -
List tags
13 -
Link tags
14 -
Image tags
15 -
Center tags
16 -
Table tags
17 -
Review
|
|
If
you were to use only the <p> tag and nothing else in
all your future eBay listings, at the very least, your item
description text would be broken up into readable blocks as opposed
to one long, impossible-to-read block. So, technically, you could
stop right here, use only the <p> tag and be happy.
Of course, there are many other HTML tags that do other cool
things. For example, the tag named b - <b> tells
the browser to make all the text that follows the tag bold!
Lets
go back to our test.html file in Notepad and type a <b>
tag just before the title line of our description (as shown in fig.
19)
|
|

Fig. 19
|
Again, make
sure to Save the Changes! (fig. 20)
|
|
Lets go back to
the IE window and click refresh
look what happens! (fig. 21)
|
Fig. 21
|
Everything after the <b>
tag is now bold. If we want only title line to be bold, we need a way to
tell the browser, stop the bold here! The tag we need is a bold
closing tag. Any tag that closes or stops some type of formatting looks like
this:
</name>
In this case, the tag
for stopping the bold formatting is </b>
Note the forward
slash before the tag name, b.
Lets go back
to the Notepad file and type in a closing bold tag
at the end of the
title line after the word Rug (fig. 22)
|

Fig. 22
|
As always, dont
forget to File, Save the changes! (fig. 23)
|
|

Fig. 23
|
Go back to the
Internet Explorer window and click the refresh
icon.
The title line is
now the only thing that is bold! (fig. 24)
<b>My
Wonderful Oriental Rug </b>
|
|

Fig. 24
|
Thus...
<b>My
Wonderful Oriental Rug </b>

|
Any HTML tag that
formats text will always have an opening and closing version so you can
specify exactly where to start and where to stop a type of formatting.
Lets look at several other simple tags!
 |
|
 |
| Back to Step 6 |
|
On to More Tags |
|
|
|