Hello all,
I am completely new to web development and am trying to learn by building my own website. The issue I have run into is getting my css to work on my page.
HTML:
<html>
<head>
<LINK rel="stylesheet" type="text/css" href="style.css">
<title> The Shore Report </title>
</head>
<body>
<img src="TheShoreReport.jpg" >
<img src="Web Background.jpg" >
</body>
</html>
CSS:
body
{
background-color:#b0c4de;
}
Is there something wrong with my link or what?