i have some code in codeigniter when i try to load css file is not working. how to load css in codeigniter and maybe my code its wrong. can you tell me ho to solve in my code?
<!doctype html>
<html lang="en">
<head>
<meta http-equivn="Content-Type" content="text/html: charset=UTF-8"/>
<title>Taekwondo</title>
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/tkd.css" type="text/css" media="screen">
</head>
<body>
<!--head-->
<div id="box-wrapper">
<!--Header-->
<header>
<!--top info-->
<div id="top-info">
<div class="row">
<div class="twelve column top-desc">
<ul>
<li><span>Login/Register</span></li>
</ul>
</div>
</div>
</div>
<!--top info end here-->
<div class="row">
<div>
<div class="twelve column">
<div id="left-header">
<!--logo start here-->
<div id="logo">
<a href="home.php"><img src="assets/img/logo.png" alt="main-logo" class="retina"></a>
</div>
<!--logo end here-->
</div>
</div>
</div>
</div>
</header>
</div>
</body>
</html>
controller code
<?php
/**
*
*/
class Home_c extends CI_Controller
{
function __construct()
{
parent::__construct();
}
function index()
{
$this->load->view('home');
}
}
?>
and my name css is tkd.css and i save in assets/css/tkd.css