Blogroll
Search

Html

HTML tutorials series on girendra.com

Thursday, August 7th, 2008

Today I am starting a new html and css tutorials series. It is very useful for the peoples who are seeking the help in html and css. These tutorials will cover the following topics:

What is html and what can I do with HTML
Basic Syntax of HTML
Role of meta tags
Role of headings(h1, h2, […]

Change style of submit button in html/CSS

Saturday, March 22nd, 2008

It is very common practice for webmasters to change default style of submit button in html forms. It is easy to change default background image of button in firefox using CSS and it is equally easy in case of internet explorer but a bit tricky.
Here is the code to change style of button including background […]

Create Three column layout using div and CSS

Wednesday, March 19th, 2008

In this tutorial you will learn to create a three column layout using css, and divs
Here is the sample sketch of layout.

1. First of all we need to create a container for page contents.
<div id=”container”> </div>
2. Now create three partitions of it by creating three divs(header, content and footer) inside the container tag.
3. Finally add […]

Div or table which is better?

Wednesday, March 19th, 2008

I personally think that div provides more flexibility than the tables. Using tables you can position the contents horizontally or vertically but using div you are free to put contents anywhere in your page. Also it is very easy to make changes to div without affecting the original layout of the page; you just need […]

Setting distance between bullets and text in unordered list

Tuesday, March 18th, 2008

It is not a very difficult task but it is bit tricky to set equal distance between your custom image bullet and text in an unordered list. Here I am going to explain this procedure step by step using the css.
1. Create an unordered list and enclose this list inside the div tags.
2. Set the […]