Shell Accounts: 3 logins - 9 backgrounds
How to Create Lists:
Bulleted List | Glossary List | Numbered List
Bulleted List:
> Back > Top
List creations is very simple. To make a bulleted list just
follow the layout below, insert a new <LI> tag when you want a new line. There is no
closing tag to <LI>.
<HTML>
<HEAD>
<TITLE>Ack</TITLE>
</HEAD>
<BODY>
<UL>
<LI>First Line
<LI>Second Line
<LI>Third Line
</UL>
</BODY>
</HTML> |
|
- First Line
- Second Line
- Third Line
|
Numbered List:
> Back > Top
Will create a list where there is a number located to the
left of the text.
<HTML>
<HEAD>
<TITLE>Ack</TITLE>
</HEAD>
<BODY>
<OL>
<LI>Numbered line 1
<LI>Numbered line 2
<LI>Numbered line 3
</OL>
</BODY>
</HTML> |
|
- Numbered line 1
- Numbered line 2
- Numbered line 3
|
Glossary List:
> Back > Top
This is useful if you want to explain some definitions like
our computer definitions.
<HTML>
<HEAD>
<TITLE>Ack</TITLE>
</HEAD>
<BODY>
<DL>
<DT>HTML
<DD>Hypertext mart up language
<DD>The hypertext markup language is a markup language based on the standard
generalized markup language that embeds you to format information in visually appealing
ways without sacrificing ease of use and the potential for wide distribution
<DT>Next word
<DD>explain.
</DL>
</BODY>
</HTML> |
|
- HTML
- Hypertext mart up language
- The hypertext markup language is a markup language based on the standard generalized markup language that embeds you to format information in visually appealing ways without sacrificing ease of use and the potential for wide distribution
- Next word
- explain.
|