How To Make Spaces in text using HTML |
As you know, if you are using html, like neopets shop descriptions, you can't have spaces between paragraphs. unless you know html. without html it makes thinks blocky, hard to read! A bit like this, which means people might not read it. Because the space you make when you press enter does not show up when you save it. it just moves the writting the next line down like this> However with a few simple symbols you can add paragraph spaces. But sometimes you want a space like the one before this sentance, right? Well its quite simple to do. |
Well when using html, you may see this line <p><font face=......> well if you read the first Html page you know that you can ignore the font part :o) It's the <p> part you need to take notice of, its this that tell the page to put paragraph spaces. |
Ok for example the first long paragraph in green [top of page] looks like this with html. |
<font face="comic sans ms"><font color="green">As you know, if you are using html, like neopets shop descriptions, you can't have spaces between paragraphs. unless you know html. without html it makes thinks blocky, hard to read and uncomfortable to read!</font> |
Add the <p> tag to make it more readable [use the enter key to jump lines as normal the <p> tag tells the page to keep the gap.] |
<font face="comic sans ms"><font color="green">As you know, if you are using html, like neopets shop descriptions, you can't have spaces between paragraphs. <p>unless you know html. without html it makes things blocky, hard to read.</font> |
This site was created by C. Mason |
How ever: if you want you text to appear on the line directly underneath, you need to use the <br> tag; below is the difference between the <p> tag and the <br> tag. |
Using the <p> tag What you type in: line1 <p> line2 What you see on your page: line1 line2 As you can see, there is a complete line of space between line1 and line2. |
Using the <br> What you type in: line1 <br> line2 What you see on your page: line1 line2 As you can see, there is no space between line1 and line2. |