Posts: 297
Name: Michael Pehl
Location: Palma de Mallorca
|
Quote:
|
Can I make hubpages like websites just by using Microsoft Front page or just use any other web designing software? Writing html code to create multiple colored webpages would be enough?
|
Hm well, looks like you do not know much about HTML/CSS.
CSS gives you a lot of possibilities (with CSS3 even more).
Frontpage is not the right program to "design" IMO.
It is very easy to do a "multiple background color" site. Look here:
Code:
<html>
<head>
<title>testpage</title>
<style type="text/css">
* {margin:0;padding:0;} /* basic reset, lol */
body {background: #000;width:100%;height:100%;}
#header {background: #888;width:100%;height:80px;}
#content {background: #fff;width:100%;height:320px;}
#footer {background: #ccc;width:100%;height:80px;}
</style>
</head>
<body>
<div id="header">header content</div>
<div id="content">main content</div>
<div id="footer">footer content</div>
</body>
</html>
You can see, it is pretty easy to do "multiple backgrounds" as you call them... took me 5 minutes
The possibilities are nearly endless if you know how to do it with CSS.
I could write some tuts but ... time is money.
Laters,
Michael
__________________
Chief Web Officer / Front-End Developer / System Engineer
Please login or register to view this content. Registration is FREE - Please login or register to view this content. Registration is FREE
|