[ Home ]
[ Basic Tutorials ]
[ Tables ]
[ Styles ]

The Basics

So now guys we will just need to get what we need in this web making session. So amusingly at first I was shock at the requirement or what you need to use in making web site and even if you dont have an Internet you can still make one but the problem is the world wont see it. So let's go to the requirement. So ensure that you got a IE or known as Internet Explorer or you cold even use Netscape or any browser, and then the last thing that you need is Notepad and this is where you wil make your own page. OK so lets start.

Every Web page is an .html or .htm files that means hypertext mark-up language (I hope I am right). So in every web page that you make in Notepad should be saved as (filename.html or filename.htm) or else it wont be a web page.

A tag is what we call those bunch of codes that tells the browser what to do and how should it be done.

Ok so the begginning tag for making a web site has always become the < html >. This codes tells the browser that it is a .html or .htm files. Almost every tag has its own ending tag well for example the ending tag for < html > is < /html > as you can see they only put an (/) key on the tag and almost all of those tags where ended with it but not all.

The complete codes for the html is

    < html >
    < head >
    < title >< /title >
    < /head >
    < body >
    < /body >
    < /html >

Without any spaces between the lesser than and the words. The < head > section is where you can put the styles that you want and some metatags that is for search engines. The < title > section is where you put the name or title f your page like for example my < title >Basic HTML< /title >. Above you see the title that looks like Basic HTML-Netscape (if ur Netscape). The < body > section is where you can see at your browsers.

[ Read More ]