I am trying to implement a Sample MVC(PHP) in which CSS file doesn't seem to be working . i Suspect it could be my referring style . The below code is of header from views
Views-> header.php
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" src="public/css/default.css">
</head>
<body >
<div id="header">Header</div>
<div id="content">
<p>dsfds</p>
css file Public/CSS/Default.css
body {
background: silver;
}
For clear picture this is my folder structure