|
| CHAT | HANDOUTS | LINKS | SEARCH | STUDENTS | TESTS | TOOLS | VOCAB | HELP |
| What are some of the basic HTML tags? |
<html><head><title>My Home Page</title></head><body><center><h1>My Home Page</h1></center>(Your text would go here . . . )
</body>
</html>
<BODY BGCOLOR="#FFFFFF">
The code with this line would look like this:
<html><head><title>My Home Page</title></head><BODY BGCOLOR="#FFFFFF"><center><h1>My Home Page</h1></center>(Your text would go here . . . )
</body>
</html>
Colors for the background, visit this page The 216-color browser-safe palette with codes for other choices of colors. You can simply substitute the code in this example for the color code you want to use.
NOTE: In addition to white and black, you can just use the word rather than the code for them for the colors below:
|
|
<html><head><title>My Home Page</title></head><BODY BGCOLOR="#FFFFFF" LINK="#6633FF" VLINK="#FF0099">
<center><h1>My Home Page</h1></center>(Your text would go here . . . )
</body>
</html>
Look at this example:

I would add the following tag to my page:
<BODY BACKGROUND="images/notebook.gif" BGCOLOR="#FFFFFF" LINK="#6633FF" VLINK="#FF0099">
Notice that I just added the body background tag in front of the body bgcolor tag. I include both because if people view my page with images off, I still have a background color they can see. The entire code would look like this:
<html><head><title>My Home Page</title></head><BODY BACKGROUND="images/notebook.gif" BGCOLOR="#FFFFFF" LINK="#6633FF" VLINK="#FF0099">
<center><h1>My Home Page</h1></center>(Your text would go here . . . )
</body>
</html>
Here's what the page would look like (CLICK HERE). Turn images off first before you view the page to see what it would look like with out the background. Here are some sites that contain background images:
Okay, here's what the code looks like:
<IMG SRC="images/black.gif" width="50" height="1800" align=left>
The actual size of the graphic is 10 pixels by 10 pixels, but you can make it bigger by adjusting the size of both the height and width to the desired size. You can also adjust the space between the background and the text by adding the following code:
<IMG SRC="images/black.gif" width="50" height="1800" align=left hspace=10>
You can create similar graphics by using programs like Photoshop or PaintShop Pro. You can download some of my samples from THIS directory.
<center><h1>Title</title> should not be used for changing the size of letters in your sentences and paragraphs.
<html><head><title>My Home Page</title></head><BODY BACKGROUND="images/notebook.gif" BGCOLOR="#FFFFFF" TEXT="black" LINK="#6633FF" VLINK="#FF0099"><BASEFONT="5" COLOR="navy" FACE="arial">
Here is the code for changing a sentence to look like this:My name is Randall.
<font size="5" color="#0033CC" face="arial">My name is Randall.</font>
<html><head><title>My Home Page</title></head><BODY BGCOLOR="#FFFFFF">
<center><h1>My Home Page</h1></center><font size="1" color="#000000" face="times new roman">My name is Randall.</font>
</body>
</html>
| CHAT | HANDOUTS | LINKS | SEARCH | STUDENTS | TESTS | TOOLS | VOCAB | HELP |