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

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -