How to add css files in asp.net mvc4 project. I have 3 css files like this
images/img.css
content/con.css
styles.css
i added in bundleconfig.vb but its not working.
bundles.Add(New StyleBundle("~/Content/css").Include("~/images/img.css"))
bundles.Add(New StyleBundle("~/Content/css").Include("~/content/con.css"))
bundles.Add(New StyleBundle("~/Content/css").Include("~/styles.css"))
In view page
<%: Styles.Render("~/Content/css") %>
<%: Scripts.Render("~/bundles/modernizr") %>