hey all
Anyone know anything about HTML?
if anyone could make me or give me some tips to make a page like this
http://img442.imageshack.us/img442/9061/hjemmesidedrommesidenmi8uh.jpg
it would be verry great:D
(or maybe give me a menu i can work on) :D
Gonna make my own homepage, with some of my grapic pictures and other crap :)
Microsoft Frontpage should do the work you need perfectly.
i dont got that! but i think i maybe can get?!
Anyway, is it easy to learn?
use dreamweaver....or notepad! :D and you can also try flash for nice effects
give me 15 minutes.
Check out this site for some easy examples: http://www.w3schools.com/html/default.asp
something to get u started, only tested in firefox.
the br's are there to force height where there is no content.
<html xmlns="http://wwww3.org/1999/xhtml">
<head>
<title>..title..</title>
<style type="text/css">
div#header {
height: 150px;
border: 1px solid #000;
}
div#logo {
float: left;
width: 150px;
height: 150px;
border: 1px solid green;
}
div#banner {
height: 150px;
margin-left: 150px;
border: 1px solid red;
}
div#wrapper {
clear: both;
}
div#nav {
float: left;
width: 150px;
border: 1px solid red;
}
div#content {
border: 1px solid gray;
}
</style>
</head>
<body>
<div id="header">
<div id="logo">..logo..</div>
<div id="banner">..banner..</div>
</div>
<div id="wrapper">
<div id="nav">
..navigation..
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
</div>
<div id="content">
..content..
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
</div>
</div>
</body>
</html>
Wooow! Thanks a lot Jamoe :yahoo:
This will help me alot! :clap:
Quote from: Bob;174417Check out this site for some easy examples: http://www.w3schools.com/html/default.asp
good site, I have been there myself when stuck.
definatly worth checking out!
div's could give you some problems in the beginning.
I started out working with tables(i know i know old vesion) but learned my html there.
now i work a lot with div's but for starter like you i would say try out making your first layout in tables. when you got that all working try out to work with div's
(miner point)
you sould put your div's in you css page it is why cleaner working that why:narnar:
and keep css and html seprert...
Quote from: noevra;174438div's could give you some problems in the beginning.
I started out working with tables(i know i know old vesion) but learned my html there.
now i work a lot with div's but for starter like you i would say try out making your first layout in tables. when you got that all working try out to work with div's
(miner point)
you sould put your div's in you css page it is why cleaner working that why:narnar:
and keep css and html seprert...
I will disagree about the learning table layouts, I think its utterly pointless and backwards. Learning about spacer gifs and weird ways to hack tables is going to be just as hard if not harder then working with divs. There are plenty of books and resources that will teach you how to design layouts without using tables.
Definalty keep your css and html seperate, but for this simple example, I really didn't want to confuse the lad and have to give extra instructions. If he takes it up he will soon discover the link tag.
Quoteyou sould put your div's in you css page it is why cleaner working that why
not sure what u ment by that so can't comment :)
my favourate resource for all things web design www.alistapart.com (http://www.alistapart.com)
Quote from: Jamoe;174440Quoteyou sould put your div's in you css page it is why cleaner working that why
not sure what u ment by that so can't comment :)
He probably mean what you said just above that quote, that you should keep your css and html separate :narnar: