Question : CSS Template

I am developing a website.
I am very new to  HTML, CSS. I am looking for a template for this.
I know there are many sites but I am not gettting what i want.

Here is my requirement:(template page)
          |----------------------------------|
color1|      Company name               |
          |----------------------------------|
          |homepage    |                        |
          |siteaddress  |     Details        |
color2|contactus     |                        |
          |details           |                        |
          |                     |                        |
          |                     |                        |
          |                                              ||
color3|                                              |
          |                                               |


here color1, color2 and color 3 are colors only at the border.
The color in middle f data is different?

or there any tools  which will generate for me templates like this?
if so can you pl let me know.

Answer : CSS Template

Here you go:
Now it's time for you to do some work :)
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.container1 {
	width: 100%;
	background-color: #333;
}
.container2 {
	background-color: #666;
	width: 100%;
}
.container3 {
	background-color: #999;
	width: 100%;
	height: 100px;
}
.header {
	width: 600px;
	background-color: #FFF;
	height: 100px;
	margin-right: auto;
	margin-left: auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
.contentarea {
	width: 600px;
	margin-right: auto;
	margin-left: auto;
	background-color: #FFF;
}
.content1 {
	float: left;
	width: 150px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;
	background-color: #FFF;
	height: 400px;
}
.content2 {
	float: left;
	width: 449px;
	background-color: #FFF;
}
.content3 {
	float: left;
	width: 449px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}
.clear {clear:both;
line-height:0px;}

.footer {
	width: 600px;
	background-color: #FFF;
	margin-right: auto;
	margin-left: auto;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
}
body {
	background-color: #366;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
-->
</style>
</head>

<body>
<div class="container1">
  <div class="header">Company name</div>
  </div>
  <div class="container2">
  <div class="contentarea">
    <div class="content1">
      <p>homepage<br />
      siteaddress<br />
      Details<br />
      contactus<br />
      details </p>
      </div>

    <div class="content2">Flash Image goes here</div>
    
    <div class="content3">main content area</div>
    <div class="clear"></div>
    </div>
  </div>
  
  <div class="container3">
  <div class="footer">Footer and copyright info goes here</div>
</div>
</body>
</html>
Random Solutions  
 
programming4us programming4us