<hr?> and stlye cc wont show up n code??

A

Anonymous

Guest
firstly change your < hr /> tags to <hr> (make sure there are no spaces)

and in your css when defining colors you need to put '#' at the start (black is #000000)

Code:
hr{
    color:000000;
    background-color:000000;
    border: 12px;
    height: 6px;
    width: 100%;
 }
becomes
Code:
hr{
    color:#000000;
    background-color:#000000;
    border: 12px;
    height: 6px;
    width: 100%;
 }
hope this helps

there are a few other colors in your css that also need the '#' adding to the beginning
 
Back
Top