basic HTML how to



HTML language is the same idea of other language that it runs by the bunch of codes. But HTML language is the easier language to learn. Hear, I try to provide as much as commands that I know so far, and I hope it may help you guys xD

First, you can open any text editors, but I recommend you guys open the Notepad or Wordpad to edit the command codes. Right now, there are alot of HTML editors that lurks around the web, like FrontPage or DreamWeaver. But it's better if you know how to code it not just point and click.

Here is the basic form of the HTML language:

<html>
<head>
<title>Your Title Here</title>
<head>
<body>
Your Website Contents Here
</body>
</html>

After you finish with all the commands, you can click to "File" and hit "Save As". Save your work with just simple one word and follow it at the end with ".html" such as mypage.html, default.html or index.html and then click "Save".

NOTE: Before you start, you must understand how the HTML code works. It's very simple. When you open a command you have only two brackets what you open you must close by adding a slash to the tag. Anything you type in your HTML document must be between the two tags for the tag to take effect.

There are alot of site that are tutorials for creating basic or even advance HTML coding, a sample of it is W3Schools. Just search it on google :)

~ M m i x X ~