Line Breaks and Paragraph Tags
As demonstrated on a previous page, a browser does not interpret a hard return (hitting the enter key on your computer) as an indication of a new line of text. There are two HTML tags that are used for this purpose. Line Break: <br> Paragraph <p> A <br> will start a new line of text without creating a space between the lines. A <p> will create a new line with a space between the lines. |
| HTML Code | Browser Display |
| 1882
- Founded as Findlay College by the<br> |
1882 -
Founded as Findlay College by the 1886 - "Old
Main" opened for classes in 1890 - A conservatory of music opened. |
| A more modern approach to the paragraph tag has changed the tag to a "before and after" tag. Newer browsers will understand a paragraph tag as <p></p> where these tags are placed at the beginning and end of a paragraph. Newer browsers will also interpret the traditional use of the paragraph tag as well. |
| HTML Code (modern approach) | Browser Display |
| <p>1882
- Founded as Findlay College by the<br> |
1882
- Founded as Findlay College by the |
| Jump To Top | Bold
& Italic |
|