HTML Coding Rules : Rule 1

DOCTYPE

< !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN"
"http://www.w3.org/TR/html4/strict.dtd">

The DOCTYPE is used to determine how the browser will render your code. There is one standard for HTML, but not one browser. Having the DOCTYPE in the beginning of all your HTML pages helps keep the browser defined in a specific set of standards.
HTMLTree comment: Most web [...]

HTML Useful Tips

When you write HTML text, you can never be sure how the text is displayed in another browser. Some people have large computer displays, some have small. The text will be reformatted every time the user resizes his window. Never try to format the text in your editor by adding empty lines and spaces to [...]

Scripts To Watch Out For

As far as the web is concerned, there over a million websites to visit and what really makes them unique would be the domain name and the type of programming language that was used for them. This is one reason why sometimes we run into script errors which would require us to download some add-ons [...]

Web Pages – In Style with CSS

Now you may have encountered the term CSS on the net which is simply an extension for the basic HTML command set that allows more style and control for your web page. The formatting of text, alignment and other nuances that makes a web page utterly pleasing to look at are all done with CSS [...]

Hosting – What and Why?

You may have run across the term in your browsing and with the many annoying pop-up windows that advertises such services. Hosting is actually a simpler way of getting a web page on the internet without much cost. In the early days of the internet, hosting used to be done by each and every company [...]

Web Basics

image source: www.w3.org
Today we can do many things on the world wide web. I will teach you some information about the web.
Web pages – is a page that is seen on the world wide web. It gives us information, do some work, listen to sound or watch a video.
Website – it is a compilation of [...]

HTML Coding Rules : Rule 4

CSS

< link rel="stylesheet" type="text/css" href="all.css" />
< style type="text/css">@import “noNav4.css”;< /style>

The browser was created before the rise of CSS. What does this mean? Well, it means that old browsers won’t understand your CSS files. In fact some browsers, sorry I mean Netscape 4, will crash at the sight of CSS.
The first line will work for all [...]

HTML : Introduction

What is an HTML File?
HTML stands for Hyper Text Markup Language
An HTML file is a text file containing small markup tags
The markup tags tell the Web browser how to display the page
An HTML file must have an htm or html file extension
An HTML file can be created using a simple text editor
Let’s Try It?
If you [...]

Spam and Pieces

One thing that web is full of will be people who could care less if they are classified as spam or authentic users. These people have something else in mind. Outside providing havoc to your site, they are trying to market their own sites which are totally undefined.
They love to prey on beginners. Just [...]

Whatever Happened to the GIFS?

Before audio and video enhancements made their way into the web scripting scene, graphic interface format files were the talk of the town before. Animations had their share of popularity, mostly human made but adored by many.
Today, it is all about flash and videos. They have totally changed the age of graphical interface files. [...]