I am new to CSS and HTML. I am studying an online tutorial that provides a sample HTML and CSS style sheet. When I save these two files to my computer in the proper format they do work. However, when I go into the CSS style sheet and change the color from #FF0000 to "blue" I get no results in the HTML. Any help is appreciated. Below are the two sets of HTML and CSS code
Code:
HTML:
<html> <head> <title>My document</title> <link rel="stylesheet" type="text/css" href="http://bytes.com/style.css" /> </head> <body> <h1>My first stylesheet</h1> </body> </html>
CSS:
body {
background-color: #FF0000;
}
Comment