• Be sure to join the discussion on our discord at: Discord.gg/serebii
  • If you're still waiting for the e-mail, be sure to check your junk/spam e-mail folders

Css

Midnight Umbreon

Do The Hokey Pokey!
I'm stuck, here is what I have so far:
Code:
<html>
<head><title>.::Halfbaked::Website::.</title>
<style>
body    background-color: #860D00;
    body: #000000;
    

a:link    color: #000000;
    

a:visited  color: #FFFFFF;
       text-decoration: none;

a:active   color: #00FFFF;
       

a:hover       color: #FFFFFF;
       text-decoration: none;
</style></head>
<body>


</body>
</html>
What did I do wrong my background is blank, white, dead! *cries*

I know I'm slow,
</html>
 

Virtual Headache

*~*~*~*~*~*~*~*~*
You CSS looks, errm, kinda weird o.o

Instead of
HTML:
body    background-color: #860D00;
    body: #000000;
use
HTML:
body {
background: #860D00;
}

Note that you need to make the CSS for the links similar to that, for example:
HTML:
a:hover {
color: #00FFFF;
}

You can always get your CSS checked here: http://jigsaw.w3.org/css-validator/
 
Top