why my html wont load its css style? pls take a look and tell me what's wrong?

skullring

New member
Joined
Jan 21, 2011
Messages
2
Reaction score
0
Points
1
<html><head><title>English2</title><style type="text/css">
Body {
font-family:"Times New Roman",Georgia,Serif;
}
font-style:normal;}
{font-size:40px;}
{background-color:green;}
{background-image:url('h:\tweet.bmp');}
</style></head><body><font>English2</font></body></html>
pls reformat this and make this load on browser, im new in css
 
you should use a separate style sheet

add a line of code like this
<link href="resources/style1.css" rel="stylesheet" />
and then make a folder in your directory and put your style sheet in that

style sheet will be something like this

.body
{
font-style:normal;
font-size:40px;
background-color:green;
background-image:url('h:\tweet.bmp');
}

why do u need 40 size font btw?
 
Back
Top