Here is my simple page
<html>
<head>
<link rel="stylesheet" type="text/css" href="/public_html/css/Style.css" />
</head>
<body>
<h1> Text </h1>
</body>
</html>
and here is my simple CSS page I'm trying to link to
body
{
background-color:#d0e4fe;
}
h1
{
color

range;
text-align:center;
}
p
{
font-family:"Times New Roman";
font-size:20px;
}
Why isn't it working? is there a direct problem with any of my code?
I believe I have the link correct, my page is in the Public_html directory and in that directory is my css directory in which my CSS is is named Style.css
Could someone please help?