HI THERE TOO ALL YOU LUCKY PEOPLE THAT WANTS TO LEARN FROM UNCLE WEBBY :)
I'm going to teach you the basics , the very very basics to building a webstie of your own :)
like what everything is, how it works, and how to get it from your computer to your website :)
so lets start off with a few basic introductions to web page building :)
most of what I'm going to teach you is automatically done from a html editor, but this will let you know what going on when it does that (html editors will be explained later :) )
the first set of codes you will see are
<html> and </html> this bit of coding will tell the computer where to start and stop looking for the web codes :)
next are <head>and </head>which tell the computer that this stuff isn't to be writen on screen its just for stuff like your background sounds, pics, meta tags and so forth all of which will be explained later :)
now comes <title> and </title> which puts the title of your page up on the top of the browser much like this one is :)
and then last but not least is <body> and </body> which is where everything that is going to show on your web page outside of the backgound image is put :)
Now in case your wondering what that / is for in front of the second half of the bode is for that tells the computer that that bit of coding has stoped at that point :) so what you should see when you start up your page is something like this:
<html>
<head>
<title> </title>
</head>
<body>
</body >
</html>
you should be able to take this code type it into something like notepad, and save it as .htm or .html and after putting some stuff into it, you can run it through your browser :)
well then that will be then end of lesson one
come back next time for lessons on how to add bolding, italics, underlines, and bigger or smaller lettering, so you can add some flair to your text :)