Search
Recommended Sites
Related Links






   

Informative Articles

Build a Home Page the Right Way
A home page is basically the main page of a website which is the first thing that an internet browser or surfer first sees once he/she visited your site. This is part of a web page (though in this case since it is termed as "homepage" stands for...

Creating nice looking thumbnails for HTML photo albums.
Several years ago I spent a nice summer in Europe, visiting great countries like Spain, France and Netherlands. I brought a huge collection of digital photos from this trip and wanted to share them with my friends and relatives. I started to look...

How To Get A Top Ranking In Google In Just 3 Days
So how do you get a top listing in Google and how do you get into Google quickly. Lets begin with the latter. You can submit your site using Googles submit site tool but amazingly enough this is NOT the fastest way to get...

Internet Marketing Tools -- Email Basics
Electronic mail, better known as email, is the most important tool used on the Internet. It's much faster than snail mail, less expensive and enables you to instantly communicate with your visitors and customers. Although most Internet Service...

Teacher Websites - A Student's Perspective
I have been a student for many years. I even took the 7-year plan to go through college for my Bachelor's degree. Every so often I still take another course. Since much of my studies and background involve web-related stuff, I tend to notice...

 
How to Build a Basic CSS Layout

Designing without tables by using CSS layouts is fast
becoming the new standard on the Web because of the
benefits mentioned in my previous article. Web browsers
used these days are now able to render web pages
proficiently. In this article I will endeavor to create a
basic 2 column CSS layout which you can use for future
design projects.

Here is the live web page of the basic CSS layout:
http://www.isitebuild.com/css/css-layout.html

1. Divide your page into sections - the tags
allows you to create distinct divisions on your web page.
They are identified with a unique id. You can then add a
style (css selector) that specifically applies to the div
of that id. Remember to include the DOCTYPE (to render your
page accurately in the browsers) and meta tags (enables
search engines to spider your pages).

wrapper: is the div that wraps around all the other divs
like a container for the page elements.
header: defines the top banner of the page
main: defines the main content of the page
nav: defines the navigation of the page
footer: defines the footer and sub-navigation of the page

Transitional//EN"
"">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">




How to Build a Basic CSS Layout