I want to reference a css and js bundle in html page defined in my global.asax.cs
Global.asax.cs
System.Web.Optimization.BundleTable.Bundles.Add(
new StyleBundle("~/StyleSheets/kendo/css")
.Include("~/StyleSheets/kendo/kendo.common.min.css")
.Include("~/StyleSheets/kendo/kendo.default.min.css")
);
var KendoForJquery = new ScriptBundle("~/bundles/kendo_jquery_script")
.Include("~/_scripts/kendo/jquery.min.js")
.Include("~/_scripts/kendo/kendo.all.min.js");
System.Web.Optimization.BundleTable.Bundles.Add(KendoForJquery);
In MVC Page , i refer bundles like this
@Scripts.Render("~/StyleSheets/kendo/css")
But i want to refer above two bundles in html, how i can do it ?