I have a web app that utilizes a masterpage and several content pages. I have my StyleSheet.css inside my MasterPage, however, the content pages aren't picking up the styles. Below is my MasterPage markup.



Code:
<&#37;@ Master Language="VB" AutoEventWireup="false" CodeBehind="Site1.master.vb" Inherits="PF.Site1" MasterPageFile="" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
       <asp:ContentPlaceHolder ID="head" runat="server"></asp:ContentPlaceHolder>
       <link href="Styles/StyleSheet1.css" rel="stylesheet" type="text/css"/>
</head>
<body>
</body>
What am I doing wrong?

Thanks,