Here is the hierarchy of my files
Codeigniter/
applications/
assets/
styles.css
...
views/
welcome.php
system/
...
under my style.css is this code
p {
color: #3333ff;
background-color: #66ff66;
}
and under the welcome.php is this one.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>test</title>
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>assets/styles.css" />
</head>
<body>
<p>test</p>
</body>
</html>
I set my base_url as
$config['base_url'] = 'http://localhost/Codeigniter/';
I cant understand why the css file isn't working
I also tried to change link to
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>application/assets/styles.css" />
but didn't work also