I am new to codeigniter and it may sound stupid but I can't figure it out.
I wanted to load an HTML template and I copied the whole content in views directory, but when I loaded the page in the controller, the page doesn't have any CSS, JavaScript or images.
Its just plain, as you can see below, it's just text without content.
I even tried adding the CSS, JS and image folders in the main codeigniter route next to index.php, but it didn't work either.
<?php
class Test1 extends CI_Controller{
function index(){
$this->load->view('index.html');
function _test2()
{
}
}
}

<header>and</header>