Index
-Introduction
-Headers
-Font


Introduction

This is my Project 1, It's meant to show you some basic HTML. This is also meant to be a quick reference of HTML for myself, and also meant to be a Project.


Headers

Here are some examples of some things you can do with Headers. I'll also be playing with Alignment properties.

Here's an H1 Header, which is the largest Header
To do this, use the

tag.
It is Aligned to the Center,
To do this, use the "align=center" property.

Here's the H2 Header,
To get this, use

.
It's aligned to the left using the "align=left" property.

The pattern continues for Headers 3-6
So individual sections are unneeded.
And you can also align your text to the right with "align=right."

Font

This section will show you some neat things that you can do with Fonts.

In order to make your text Bold, you have to use the <B> Tag, this makes your text bold like this. The alternative is <strong>.
For Italics, you use <I> the end result should be something like this. Another way to get italics is <em>.
For Underline, use <U> and it'll come out looking like this
Strikeout uses <S> and it looks like this.

You can also change the color of your font.
For Red font, use this code: Text you want the color to be changed.
For Blue font, use this code: Text you want the color to be changed.
For Green font, use this code: Text you want the color to be changed.
For Black font, use this code: Text you want the color to be changed.
For White font, use this code: Text you want the color to be changed.



Click to go to the top of the page.