HTML and CSS Reference
In-Depth Information
<!-- Load any lib files -->
<script src="js/lib/eligrey/classlist.js"></script>
<script src="js/lib/cubiq/iscroll.js"></script>
<!-- Load the utility files -->
<script src="js/app/utility/validator.js"></script>
<script src="js/app/utility/layout.js"></script>
<script src="js/app/utility/deck.js"></script>
<script src="js/app/utility/jsonp.js"></script>
<!-- Load the custom types -->
<script src="js/app/type/format.js"></script>
<script src="js/app/type/releaseDate.js"></script>
<!-- Load the models -->
<script src="js/app/model/actor.js"></script>
<script src="js/app/model/movie.js"></script>
<script src="js/app/model/video.js"></script>
<script src="js/app/model/videosource.js"></script>
<!-- Load the views -->
<script src="js/app/view/movie.js"></script>
<script src="js/app/view/movielistitem.js"></script>
<script src="js/app/view/movielist.js"></script>
<!-- Load the controllers -->
<script src="js/app/controller/movies.js"></script>
<script src="js/app/controller/favorites.js"></script>
<!-- Bootstrap the application -->
<script src="js/app/bootstrap.js"></script>
<script>
app.bootstrap.initScripts();
</script>
</body>
</html>
You will also need to load a new font from Google's font directory. This is a
simple enough task. In the <head /> tag, add the following code, just after the
mobile.css link declaration.
<!DOCTYPE html>
<html lang="en-GB" dir="ltr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width; initial-scale=1.0;
maximum-scale=1.0; user-scalable=0; target-densitydpi=device-dpi;"/>
<title>Mo Memo</title>
<link rel="stylesheet" type="text/css" href="css/mobile.css?v=22" />
 
Search WWH ::




Custom Search