HTML Tutorials
How To Make Lines and Spaces On Your Web Page
Back to Home Page Back to HTML Tutorials Home Page
Back to HTML Codes and Questions
Here you will find some useful HTML codes that will help your web page look good.
How to draw a line across your web page like the one just above.
Drawing a line is easy. <HR> There it is. I told you it was easy. The "HR" stands for horizontal rule.
How to draw other lines across your web page.
Try this code:
<HR WIDTH = "50%" SIZE = "8" ALIGN = "CENTER">
This code will tell the computer to create a line across 50% of the screen, eight pixels wide, and put the line in the center. You can be creative and change any of the parameters. For example: you can type in "LEFT" rather than "CENTER".
How to make paragraphs on your web page.
Making a paragraph is also very easy. Here is all you do.
<P> Your paragraph is typed in here. </P>
Here is another way to create a space on your web page. It is similar to the <P> code.
<BR>
"BR" stands for break.