Missing Method in HomeController

You are seeing this error because the action css is not defined in controller HomeController

If you want to customize this error message, create app/views/errors/missing_action.thtml.

Fatal: Confirm you have created the HomeController::css() in file : app/controllers/home_controller.php

<?php
class HomeController extends AppController {
   function css() {
   }

}
?>