PS. if you want a good book buy "Using HTML" 4 (fourth edition). You will learn a lot about tags, style sheets and dhtml.
Main Topics
Browse All TopicsI have only been working with html for about two weeks. I ran across a web source page that uses the tag <ul> for spacing. It is not used in a table like the books show. If it or them are deleted, the text or image moves over to the left margin. I have looked in all kinds of books and can not find a reference to this tag being used in this manner. Are there other hidden uses for any other tags?
Thanks,
rudybacon
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Thank you for answering so quickly. Since I could not find it in any book about using <ul> for indenting, I wasn't sure whether I should learn to use it or not. Does <Blockquote> work equally well with IE and Netscape?
I have had to learn this in a hurry because I have a man that had a bad experience with his web design people and trusts me. Now I am re-doing his pages and trying to get him finished up. The shopping cart form and integration is driving me crazy. Oh well, that is probably another question.
Thanks,
Rudybacon
Business Accounts
Answer for Membership
by: andrivPosted on 1999-08-05 at 20:03:42ID: 1852813
<ul> is a opening tag for an unorder list which means it adds bullets to each list item. For example each item in list will show on web page with bullets.
<ul>
<li>computers</li>
<li>modems</li
<li>monitor</li>
</ul>
If you want to have a list with numbers instead of bullets you would use <ol> intead of <ul> then each item will be numbered the first item 1) the second would be 2) instead of bullets.
Some people use the tag to indent but that is improper and the old way. We sourround the text with <blockquote> and </blockquote> which will push text away from the left and right border.