HTML tutorials series on girendra.com
Thursday, August 7th, 2008Today 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, […]
Table to div css conversion
Thursday, July 31st, 2008Are you looking for the table to div and css conversion tool and you have spent a lot of time in finding such tools. Then I will suggest you, don’t waste your time and manually code your websites in div and css.
Actually tables and divs are two different things and there are very few similarities […]
Change style of submit button in html/CSS
Saturday, March 22nd, 2008It 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 equal height columns using CSS
Friday, March 21st, 2008Here I am going to explain you the steps to create equal height columns without using image.
1. First of all you need to create a container and two columns inside the container. Here is the code:
<div id=”container”>
<div class=”leftcol”>This is column 1</div>
<div class=”rightcol”>This is column 2</div>
</div>
____________________________________________
Now make overflow of container hidden in style sheet
Create Three column layout using div and CSS
Wednesday, March 19th, 2008In 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 […]