Piczo

Log in!
Stay Signed In
Do you want to access your site more quickly on this computer? Check this box, and your username and password will be remembered for two weeks. Click logout to turn this off.

Stay Safe
Do not check this box if you are using a public computer. You don't want anyone seeing your personal info or messing with your site.
Ok, I got it
Back To Graphics Home
HTML > Font
Previous
|
Next
Basic HTML Font Tags
HTML Headings
Font Size
Font Color
Scrolling Marquee
Basic HTML Font Tags
Below are a list of common tags that can be used on text.
<b>Bolds Text</b> Bolds text.

<u>Underlines Text</u> Underlines text

<i>Italicizes Text</i> Italicizes text.

<em>Emphasizes Text</em> Emphasizes Text

<strong>Strong Text</strong> Strong Text

<s>Strike-Out Text</s> Strike-Out Text

<code>Computer Code Text</code> Computer code text
TOP
HTML Headings
There are a total of 6 headings in HTML.

Example: <H1>This is heading 1.</H1>

Outcome:

This is heading 1



Example: <H2>This is heading 2.</H2>

Outcome:

This is heading 2.



Example: <H3>This is heading 3.</H3>

Outcome:

This is heading 3.



Example: <H4>This is heading 4.</H4>

Outcome:

This is heading 4.



Example: <H5>This is heading 5.</H5>

Outcome:
This is heading 5.


Example: <H6>This is heading 6.</H6>

Outcome:
This is heading 6.
Notice how as the number increases, the heading becomes smaller. Heading 1 is the largest heading, while Heading 6 is the smallest.
Font Size
TOP
Although you can use headings to change the font size, sometimes they just aren't the sizes you are looking for. If that's the case, you can turn to the HTML tags for font sizes. There are 7 in total.
Example: <font size="1">This is font size 1.</font>
Outcome: This is font size 1.

Example: <font size="2">This is font size 2.</font>
Outcome: This is font size 2.

Example: <font size="3">This is font size 3.</font>
Outcome: This is font size 3.

Example: <font size="4">This is font size 4.</font>
Outcome: This is font size 4.

Example: <font size="5">This is font size 5.</font>
Outcome: This is font size 5.

Example: <font size="6">This is font size 6.</font>
Outcome: This is font size 6.

Example: <font size="7">This is font size 7.</font>
Outcome: This is font size 7.
These tags are all the general sizes for font in HTML. You can't do much with them when using HTML, but if you want to have control over the sizes and have them turn out exactly as how you want them to then it'd be best to learn CSS.
Font Color
TOP
Changing the color of a font is as simple as changing it's size. But the only thing that I find annoying is the hex code (color code). Hex codes consist of 6 digits of numbers. Every code is different because they each represent a different shade of color. Since there are too many codes to remember, there is a color chart that shows the value of each color.
The HTML line for changing a text color is:

<Font color="#hex code">TEXT</font>
Replace the TEXT with your own text.
Replace the hex code with your own color code.
Click Here for Color Chart
Similarly, you can also replace the hex code value with a color name. However, this only works for a few basic colors! There are a total of 16 standard colors for which you can specify the name for. These colors are...
-Aqua
- Black
- Blue
- Fuchsia
- Gray
- Green
- Lime
- Maroon
- Navy
- Olive
- Purple
- Red
- Silver
- Teal
- White (Highlight)
- Yellow
So this means that...

<font color="#FF0000">Lucky Anime</font>

is also the same as

<font color="red">Lucky Anime</font>

Output: Lucky Anime
Scrolling Marquee
TOP
Scrolling marquee, also known as scrolling text, is a great way to display your text. It is eye-catching and should be used on important notices, announcements, etc. However, it should not be used to display large amounts of words. Little words will do. Also try not to use it too frequently on one page or it will be too confusing for your visitors.  

Here is an example of a scrolling marquee:

Hi! Welcome to my site! Don't forget to leave a comment in the guestbook!
The code for a scrolling marquee is:

<marquee>your text</marquee>
You can also change the direction in which the text scrolls.

Hi! This line of text is scrolling to the right!
The code for this right scrolling marquee is:

<marquee direction=right>Hi! This line of text is scrolling to the right!</marquee>
When you look at the code above the only change is the direction. It specifically states in the code that the direction goes right.
This marquee is scrolling up. The only thing that is changed is the direction. Instead of typing "right" I have changed to "up". Cool, huh?
There are still some problems that I am having with this marquee.

Firstly, the scrolling is going waay too fast for me to read and it's blinding my eyes.

Secondly, the words are all bunched up together and don't look too appealing.

So now I should try to add more to the code to fix it up.

Here are some attributes that you can add to the marquee to suit your taste. Just like the direction, simply add them onto the list in the coding.
behavior=scroll The text scrolls out and back in again.
behavior=slide The text slides in and stops at the end.
behavior=alternate The text scrolls back and forth.
height=# Height of marquee. Unit is in pixels or percentage (%).
width=# Width of marquee. Unit is in poxels or percentage (%).
loop=# The number of times the marquee will scroll. Infinite will make it scroll forever.
scrollamount=# Amount of pixels to scroll.
scrolldelay=#Number of milliseconds between the end of a scroll and the start of another.
You can also add color to your marquee if you wish to.


This scroll of text is white with a black background.
The code for this is:


<marquee bgcolor="black"><font color="white">This scroll of text is white with a black background.</font></marquee>