I am new to CI , to test how it works i started by making css file an then a html file, but the problem is that i cannot link my css file to the html one.
This is my html:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" href="code/application/style/style.css">
<title>Insert title here</title>
</head>
<body>
Hi
</body>
</html>
This is my css:
body
{
background-color: black ;
}