Basic Design
Okay, so your new to this, the best way ive found of making web site's is to start of learning the basics then looking at other peoples site's to get inspiration. Most of the codes below are very simple and will be done for you in programs such as frontpage and dreamweaver , etc, but here are the simple steps:
1) Main script for every page
<html>
<head>
</head>
<body>
</body>
</html>
2) You insert all other scripts between the < body> and </body>. Ie
<body>
<p align="center">this is what will show up on page!</p>
</body>
3) Whatever you open you must also close as well ie: <p> </p>. You can change the plaice of writing by changing this part:
<p align="center">
<p align="left">
<p align="right">
Background colour
This is achieved simple by putting in this code in the <body> section.
<body bgcolor="#0099cc">
All you do to change the colour of page is to change the numbers. Many basic web page creators have this function anyway.
Inserting a picture
You have to insert the script between the body again:
<p><img scr="this is where your pic file is, ie /logo.jpeg"></P>
Inserting a sound clip
You can have a midi or wav file playing in the background of any page, just add the code. The code has to go in the <head> section </head>
<bgsound src="symphony.mid" loop="-1">
The loop can be set to -1 which means it will continue all time or could be set to any number normaly ie set to 3 and the song plays 3 times.
Inserting a marquee
Its simple to change the colour just change the number in font color and where you want in page ie: align="left, right, center"> pick any of them.<p align="center"><font color="#0099CC"><marquee border="0">Your text goes here!!!</marquee></font></p>
More coming shortly!