Your Guide to Professional
Web Site Design and Development

HTML Tips
HTML Codes
Web Development
Web Design Tips
JavaScript Codes
216 Web Safe Colors
CSS Tutorial
JavaScript Tutorial
ASCII Character Codes

Offering a guide to professional web site design, web page design and web design guidelines

| Web Site Development | HTML Codes | HTML Tips | Web Design TipsJavascript Snippets | 216 Safe Colors | Symbols | CSS Tutorial | JavaScript Tutorial |

Indenting Text within a Web Page


The <blockquote> tag will enable you to indent your text from the left and right margins within your web page. However, it won't enable you to indent your text from just one side.

If you would like to indent your text from the left margin only, you can use the <UL> tag (the same tag you would use to create a bulleted list). The only difference is that you won't use the <LI> tags with it. Your text will be indented just as a bulleted list is, but there won't be any bullets.

    This example is displayed using the <UL> tag without the <LI> tags. Notice how the text is indented from the left margin.


<UL>
Place your text between the <UL> and </UL tags without the <LI> tags.
</UL>

 More Web Design Tips