website promotion banner
eturnkeys
Your Ad Here
HTML and CSS  Home HTML and CSS Tutorials I want to indent text, maybe even create a list, but I don't want bullets, graphics, or numbering.
rss

I want to indent text, maybe even create a list, but I don't want bullets, graphics, or numbering.

Author: Jeff Singer More by this author
Browse Pages: << <  1  2  3  4 > >>


Here is another one of those solutions that defies logic. We will be using the <UL> tags, but without the <LI> tag for each line. You must supply your own line <BR> and paragraph <P> tags.

Example

This is actually starting in the leftmost position.
Now we will start our list.

    This is the first item in our list

    This is the second item in our list

      If necessary, we can also nest our lists

    This is the third item in our list
Source

This is actually starting in the leftmost position.<BR>
Now we will start our list.
<UL>
This is the first item in our list<P>
This is the second item in our list<BR>
<UL>
If necessary, we can also nest our lists<P>
</UL>
This is the third item in our list<BR>
</UL>

See Also:



print this page tell a friend subscribe to newsletter subscribe to rss
Rate this Material: Bad 1 2 3 4 5 Excellent
Browse Pages: << <  1  2  3  4 > >>

Add comments to "I want to indent text, maybe even create a list, but I don't want bullets, graphics, or numbering."