Hi All
I am a complete newbie to CSS and html (at least when you compare me to the rest of the website programming world), so please bear with me.
After hours of trying, I finally figured out how to make some boxes in css and it works well.
But the text-tags I've made in css don't "respond" when inserted in the html-code. The text shows, but it's the "standard", and not what I wrote in the CSS code.
I've looked at help sites and tried to copy their examples, but couldn't even then figure it out.
My header looks like this in html:
<head>
<div id="header">
<h1 id=htxt>This doesn't work!</h1> (tried lots of variations here)
</div>
</head>
CSS:
#header
{
color: #34DDDD;
width: 900px;
float: left;
padding: 10px;
Border: 9px solid #085dad;
height: 100px;
margin: 10px;
background-color: white;
}
#htxt
{
font-family: arial;
font-style: normal;
font-size: 2;
font-color: #FFFFFF;
}
I'm sorry if I'm not allowed to post code, please remove if not allowed.
Can anyone please help me?
Wishing you all a nice day
*Louise
|