![]() There is LOTS of things you can do with text to make your page stand out. Text will automatically be standard unless you use tags to change it. This section is about the text on the web page...to change the font attributes go to Fonts section. First this to learn is how to keep everything from running togeather. There is 2 ways of doing this, either with the <p> or <br> tags. The <p> tag is a paragraph tag and will automatically leave an extra line in between paragraphs. The <br> is used to finish a line, either of text or image. Html doesnt recognize the enter key, so we have to use one of those 2 methods.
No html: This is line one. This is line two. This is line three. With paragraph tags This is line one. <p> This is line two. <p> This is line three. <p> and would look like this on web page This is line one. This is line two. This is line three.
With break tags:
<right>Puts text to the right.</right> There is a way to just type and let html read it....it is the preformatted tag <pre> and end with </pre>. This will display the text exactly how you type it.
Lets say I wanted to do this,
A
AAA
AAAAA
AAAAAAA
and I typed it on the page just like that but when I went to see it on my
browser it was just,
AAAAAAAAAAAAAAAA
If I had put the <pre> tage before I started typing and
the </pre> when I was done it would of been the way I orginally typed it. |