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 |

Preformatting an HTML Web Page Form


You can preformat your web page forms so that they will display properly within your web page.

The FORM tag is used to set up input forms on your web site. To properly align your forms, instead of using a table, use the <PRE> tag for the same results. Your form will be displayed exactly as you format it within your HTML.

By preformatting your forms, not only will it save you some time, but it will also cut down on your HTML code and speed up your website's load time.

<FORM>
<PRE>
Name: <input type="text">
Email:  <imput type="text">
</PRE>
</FORM>

Although the <PRE> tag is great for preformatting your forms, you can also use it with your text and other HTML codes.

 More Web Design Tips