This is my first ASP.NET Core assignment and I am experiencing issues with applying CSS. The CSS files are all located under the wwwroot folder. While I can view them properly through a browser, my project in ASP.NET appears to be messed up. like this Thanks in advance for any help.
Startup.cs
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using oClock.Contexts;
using Microsoft.EntityFrameworkCore;
...
// More C# code here
...
</div>
Index.cshtml where I utilize css files
<!DOCTYPE HTML>
<!--
Aesthetic by gettemplates.co
Twitter: http://twitter.com/gettemplateco
URL: http://gettemplates.co
-->
<html>
<head>
...
// HTML code continues
...
</div>
</body>
</html>