Hello I am using GTMetrix website to evaluate my website and I got this:
The following external CSS files were included after an external JavaScript file in http://mywebsite.com/. To ensure CSS files are downloaded in parallel, always include external CSS before external JavaScript.
http://mywebsite.com/App_Themes/Mono...onochrome2.css
I built my website based on the planet wrox covered in the book:
here is my master page that included the modernizer script:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Frontend.master.cs" Inherits="MasterPages_Frontend" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
<link id="Link1" runat="server" rel="shortcut icon" type="image/x-icon" href="~/favicon.ico" />
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<link href="../App_Themes/Monochrome/Monochrome2.css" rel="stylesheet" />
<script src="/Scripts/modernizr-2.8.3.
js"></script>
</head>
<body>
<%-- <div id="wrapper"> --%>
<form id="form1" runat="server">
<div id="PageWrapper">
<div class="beforeHead"></div> <header> </header>
<section id="MainContent">
<asp:ContentPlaceHolder ID="cpMainContent" runat="server"><header> </header>
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true">
<Scripts>
<asp:ScriptReference Name="jquery" />
</Scripts>
</asp:ScriptManager>
</asp:ContentPlaceHolder>
</section>
<footer>
<hr class="hr"/>
<span >Copyright © 2014 EAS company - All Rights Reserved </span>
</footer>
</div>
<asp:ContentPlaceHolder ID="cpClientScript" runat="server">
</asp:ContentPlaceHolder>
</form>
<%--</div> --%>
</body>
</html>
Please help me!