Web Designing

Do you want to learn how to design web pages? Well I can help a bit. I can teach some basic HTML and a few little tricks to get a cool looking page. I think it is most important to look at alot of code so I put alot of examples in it. If you want to make a web page to put on the internet go to Angelfire.com where you can get free web space and you can upload your pages from there. You will need to sign up first so that you can get a password and and a web address. If you aren't sure of anything you can e-mail me on the Contact page.
Here is how you will start a basic web page:
			<HTML>
			<HEAD>
			<TITLE>Your title goes here</TITLE>
			Any other heading information goes here(possibly JavaScripts)
			</HEAD>
			<BODY (and background/bgcolor info if you wish)>
			Everything you want to show up on your page goes here.
			</BODY>
			</HTML>
		


Web-sites are made up of tags. Notice the HTML, HEAD, TITLE and BODY tags in the above example. Here are some attributes(something that belongs to it) for these tags.

BODY tag attributes
Note:You can have all these attributes in one body tag.
<body bgcolor="white"> Changes background color

<body background="back.gif"> Changes background image

<body text="green"> Changes text color

<body link="blue"> Changes link color

<body alink="red"> Changes active link color

<body vlink="purple"> Changes visited link color


Different Tags
Note:All these tags go in the body
<img src="myimage.gif">Displays an image named myimage.gif

<a href="mylink.html">mylink</a>Displays a link to mylink.html

<input type="password">Displays password textfield

<input type="textfield">Displays textfield

<img type="checkbox">Displays checkbox

<img type="radio">Displays radio buttons

<textarea cols=50 rows=50>Displays textarea with 50 columns and 50 rows

<applet archive="myarchive.jar" code="myclass.class" width=100 height=100>Displays applet