How to do HTML

back

HTML is the internet programming language that use things called tags. Tags are letters or words inside the less than and greater than signs(<>).

1. Typing beteen a <center> tag and a </center> will give you centered stuff like this:

center

2. Typing between a <b> tag and a </b> tag will give you bold type like this:

bold

3. Typing between a <i> tag and a </i> tag will give you italics type like this:

italics

4. Typing between a <p> tag and a </p> tag will make everything you type into a paragraph.

5. Typing a <br> tag will break the line and go down to the next.

6. Typing between a <sub> tag and a </sub> tag will give you text in a subscript like this:

This is normal text.This is subscript text.

7. Typing between a <sup> tag and a </sup> tag will give you superscript text like this:

This is normal text.This is superscript text.

8. Typing between a <blink> tag and a </blink> tag will give you blinking text like this (it might not work with some browsers):

Blink

Also, the "View Source" Command, available by "Control-Clicking" ( "Command Clicking" on Macs ), will allow you to see the HTML code in a website, which is really helpful when you want to see how a site works. more soon!!.........