My HTML file isn't connecting to my CSS file. Why? -
i not being able connect css html file. put code below in head @ top of html file. used code on website connect css html: http://w3schools.com/tags/tag_link.asp
this html file far:
<!doctype html> <html> <head> <link rel="stylesheet" type="text/css" href="theme.css"> </head> <body id="whole-background"> <h1>akhil sharma</h1> <p>official website</p> </body> </html>
and css:
#whole-background { background-color: #0099ff; }
someone please tell how can fix problem.
save file called theme.css in same directory of html page, css rules
#whole-background { background-color: #0099ff; }
Comments
Post a Comment