The great thing about the web, and creating web pages in basic HTML is that you have a wealth of knowledge laid out before you and it's all for free! Never before has any media brought you so much for so little. Now building in HTML you don't need lots of expensive materials, programmes, degrees or anything else alot of web sites insist you need. You're viewing this page, so i can assume you have access to a PC, and well, that's pretty much it! if you're using windows you're likely to have a text editor you can use, (notepad, in accessories). So we're away! we're off! let's go!
Open up your text editor, as i mentioned if you're using windows that's likely to be notepad; now let's have a look at some basic HTML, that you will soon become familiar with, if you're not already.
So now we have that let's have a look at how it might look in a script;
<html>
<head>
<!-- my first.html -->
<title>My very first web page!</title>
</head>
<body>
<h1>This is my first web page!</h1>
<p>
This is the first web page i've ever made,
and I'm extreemly proud of it.
It is so cool!
</p>
</body>
</html>