Site Map:

Home
About Me
Links
Graphics
Photoshop Tutorials
Java-Script Tutorials
HTML Tutorials
Contact Me

 

 

The Basics - Text and Size

First off, you need to know how to change the size of the text.  Notepad works great with HTML, but make sure when you save that you put the name of the document and then a .html (i.e. "Mainpage.html").

 

Making Text
This has to be the easiest of them all.  All you need to do is type something and then save the document in an HTML format.

 

Size of the text
Changing the size of the text is easy too.  Here's an example.

<font size="5">This text will be size 5</font>

Result:

This text will be size 5

You always put the "<>" signs when you are making a statement, also at the end of a statement you put the / before naming what you are ending.  Also the text will appear black not silver like mine, I did that so you could see the text.

 

More Size
Changing the size of the text is easy too.  Here's an example.

<h1> This text will be the size of heading number one</h1>

Result:

This text will the be size of heading number one.

all you do is put a "h" and what heading number you want in these "<>".  The heading go all the way up to 6.  So you could have something like:

<h6>This text will be the size of heading 6</h6>

Result:

This text will be the size of heading 6

 

Title
This is kind of off the subject, but oh well.  The title of a page is on the bar at the top of the browser (Example: This page says "The Basics").  Making a title is very easy.  All you do is put this code at the top of your HTML code.

<Title>Put what you want it to say here</Title>

 

Back | Next

Originally made on 10.26.02
Formally InLiner's Graphics and Tutorials