This is example 1

Here is the default template with a webpage

Code Behind this page

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Example extends CI_Controller {

	function __construct()
	{
		parent::__construct();

		$this->load->helper('url');

		$this->_init();
	}

	...

	public function example_1()
	{
		$this->load->view('ci_simplicity/example_1');
	}
	...
}