Sencha Touch ◾ 259
store, and view. Create a file called index.html with the code as shown in Listing 9.20 in
the root of the application, that is, in the NavigationApp directory.
Listing 9.20 Code Written in the index.html File
<!DOCTYPE html>
<html>
<head>
<title>Navigation App</title>
<script src = "touch/sencha-touch-debug.js" type = "text/javascript"></script>
<link href = "touch/resources/css/sencha-touch.css" rel = "stylesheet" type =
"text/css"/>
<script src = "app.js" type = "text/javascript"></script>
</head>
<body></body>
</html>
As expected, the index.html file includes the debug version and default CSS file of the
Sencha Touch JavaScript library and our custom JavaScript file, a p p.j s , which will contain our
application code. A closin ...