![]() |
So, you want to make a Web Page! Lesson 2 |
To keep things a little cleaner I am only going to write what is in the <BODY> tags. I will omit the <HTML>, <HEAD> & <TITLE> tags. Needless to say, keep these in your document.
<BODY>
</BODY>
Type something really cool.
<BODY>
Something really cool
</BODY>
![]() |
I think the first thing we are going to learn is how to change background colors. I think you'll agree that the gray is pretty ugly. Pretty ugly... is that like an exact estimate? (Note- gray is not always the default background color.)
<BODY BGCOLOR="#FFFFFF">
Something really cool
</BODY>
![]() |
You can specify a background image instead. (Note, the image should be in the same folder as your HTML file. More on this below.)
<BODY BACKGROUND="swirlies.gif">
Something really cool
</BODY>
![]() ![]() |
It's probably pretty obvious that the image is tiled. If you use a long skinny image you can get an effect like this...
<BODY BACKGROUND="bluebar.gif">
Something really cool
</BODY>
![]() ![]() |
Let's go back to a plain old white screen.
<BODY BGCOLOR="#FFFFFF">
Something really cool
</BODY>
![]() |
We can make things bold.
<BODY BGCOLOR="#FFFFFF">
Something really <B>cool</B>
</BODY>
![]() |
The same principle applies to italics...
<BODY BGCOLOR="#FFFFFF">
Something <I>really</I> <B>cool</B>
</BODY>
![]() |
...and underlining.
<BODY BGCOLOR="#FFFFFF">
<U>Something</U> <I>really</I> <B>cool</B>
</BODY>
![]() |
Back again to a plain white screen.
<BODY BGCOLOR="#FFFFFF">
Something really cool
</BODY>
![]() |
We can use tags in combination if we want to.
<BODY BGCOLOR="#FFFFFF">
Something really <I><B>cool</B></I>
</BODY>
![]() |
<THIS><THAT></THIS></THAT> Overlapping tags.... bad
<THIS><THAT></THAT></THIS> Nested tags.... good
A very useful type of text effect is the mono-spaced font, or Typewriter Text.
<BODY BGCOLOR="#FFFFFF">
<TT>Something really cool</TT>
</BODY>
![]() |
Each letter uses the same amount of horizontal space.
This is regular type -> |
iiiiiiiiii oooooooooo mmmmmmmmmm |
This is monospaced type -> |
iiiiiiiiii oooooooooo mmmmmmmmmm |
We can change the font size too... It's pretty easy!
First add the <FONT> tags...
<BODY BGCOLOR="#FFFFFF">
Something really <FONT>cool</FONT>
</BODY>
Then specify a SIZE attribute.
<BODY BGCOLOR="#FFFFFF">
Something really <FONT SIZE=6>cool</FONT>
</BODY>
![]() |
teeny tiny | small | regular | extra medium | large | real big & | yelling! |
1 | 2 | 3 | 4 | 5 | 6 | 7 |
Two things I want to discuss now. First, a <TAG> tells the browser to do something. An ATTRIBUTE goes inside the <TAG> and tells the browser how to do it.
Second point is about defaults. As you probably know, the default value is a value that the browser assumes if you have not told it otherwise. A good example is the font size. The default font size is 3. If you say nothing it will be 3. If you make faces at your computer it will still be 3.
Every browser has a default font setting- font name, size and color. Unless you have messed with it the default is Times New Roman 12pt(which translates into 3 for our purposes) and it's black. Now with Netscape 3.0 we can specify font names other than the defaults. Like ARIAL and COMIC SANS.
<BODY BGCOLOR="#FFFFFF">
Something really <FONT FACE="ARIAL">cool</FONT>
</BODY>
![]() |
To see how various fonts might look through your browser, you might want to use the Handy Dandy Font Viewer.
Now I guess is a good time to yap a bit about syntax. You notice here and there I use quotation marks, these are important. You have no idea how many times I made a page and it was all screwed up... I mean all screwed up because of a single missing or misplaced quotation mark or a missing space or a missing greater than > sign . Someday we will be separated from this kind of coding, but for now we just have to be careful. Another thing is my use of CAPITAL LETTERS for most of my marking up. This is just personal preference. I find that the tags stand out more when using all caps. You could just as well use <font> instead of <FONT>. You can even use <fOnT> if that's what trips yer trigger.
Alright, back to the fun stuff.
You can change the font color if you like.
<BODY BGCOLOR="#FFFFFF">
Something really <FONT COLOR="#FF0000">cool</FONT>
</BODY>
![]() |
We can, of course use more than one ATTRIBUTE in a <TAG>...
<BODY BGCOLOR="#FFFFFF">
Something really <FONT COLOR="#FF0000" FACE="ARIAL" SIZE="7">cool</FONT>
</BODY>
![]() |
Oh boy we're on a roll now!
<BODY BGCOLOR="#FFFFFF">
Something really <U><I><B><FONT COLOR="#FF0000" FACE="ARIAL" SIZE="7">cool</FONT></B></I></U>
</BODY>
![]() |
It doesn't matter which tag is first. It's not like if you want to make something red and bold you have to do one or the other first. You can do them in any order you want. Such as..
The fastest way to confuse the browser, not to mention yourself is to overlap the tags...
(I couldn't think of a way to explain it so I hope the use of examples makes it clear.)
One more thing and we'll wrap up this lesson. The browser has default settings for text color, link color, active link color and visited link color in addition to the background color. The defaults are...
Text is black Links are blue Active link is red Visited link is purple |
<BODY BGCOLOR="#00000" TEXT="#FFFF00" LINK="#FF0000" VLINK="#800000" ALINK="#008000">
Something really cool
</BODY>
![]() I know that we have not gotten into how to make links, so that information is not shown above (why muddy the water?) This is simply to show you how to make the color changes when you do learn how to make links. You can see that the background is now black and the text is now yellow. Links are now red Visited links are now dark red And active links are green.
|
I've written a neat little HTML & JavaScript widget called Color Picker that makes it easy (and kind of fun) to experiment with different color settings. With it, you can not only pick colors, but you can choose different fonts and font sizes, switch to bold or italic, and even easily experiment with different background images. The <BODY> tag is automatically generated for you.
There! You now know just about everything that has to do with mainpulating the text in your document. You can now make Big red letters or small bold letters You can use other Fonts, or monospaced fonts.
You can even make a
rollercoaster!
Coding for the roller coaster is here if you want to see it.
Before we wrap up this lesson, there's one little thing I want to bring to your attention. You can view the HTML code of any page you happen to be viewing by choosing View/Document Source in your browser. Your browser may word this a little differently, but all browsers have this facility. So, as you surf along and you run into a really neat page and you find yourself thinking "How'd they do that?", the answer is only a couple clicks away.
|