ITS Home Tech Support Laptop Program E Learning Media Services Communications

Web Services Home

How to obtain Webspace

Course1

Desire2Learn

Web Accessibility Guidelines

WSU Web Policy

HTML Tutorial

FTP Tutorial

Student Webs

Student Clubs

Webmail

 

Line Breaks

When your HTML document is viewed, normally the text will do a word-wrap at the end of a line. If you want to have the text BREAK (go to another line) you will use the <br> tag. This tag has no closing tag.

Example:

HTML Without Line Breaks
What you type:    What you see:
     Sentence one.
Sentence two.
Sentence three.
          Sentence one. Sentence two. Sentence three.

HTML With Line Breaks
What you type:    What you see:
     Sentence one.<br>
Sentence two.<br>
Sentence three.<br>
          Sentence one.
Sentence two.
Sentence three.

Note: The paragraph tag <p>, is equivalent to two line breaks.

<---Back to Align Attribute    On to Centering--->