WapZero
mobile information, download, service and tricks




Basic HTML

HTML is a computer language devised to allow website creation. These websites can then be viewed by anyone else connected to the Internet. It is relatively easy to learn, with the basics being accessible to most people in one sitting; and quite powerful in what it allows you to create. It is constantly undergoing revision and evolution to meet the demands and requirements of the growing Internet audience under the direction of the » W3C, the organisation charged with designing and maintaining the language.

basic structur of HTML document is like this

<html>
<head>
<title>title of html document</title>
</head>
<body>
content of HTML document
</body>
</html>


<html>Begins your HTML document.
<head>Contains information about the page such as the TITLE, META tags for proper Search Engine indexing, STYLE tags, which determine the page layout, and JavaScript coding for special effects.
<title>The TITLE of your page. This will be visible in the title bar of the viewers’ browser.
</title>Closes the HTML <title> tag.
</head>Closes the HTML <head> tag.
<body>This is where you will begin writing your document and placing your HTML codes.
</body>Closes the HTML <body> tag.
</html>Closes the <html> tag.



pacman, rainbows, and roller s