HTML and CSS Reference
In-Depth Information
Bild 3.25: In das Verzeichnis www gelangen alle Webdateien.
5. Wie bereits erwähnt, ist dies das Verzeichnis, in das all Ihre Ressourcen und Web-
dateien kommen. Die dort befindliche index.html ist die Datei, die zuerst beim Pro-
grammstart aufgerufen wird. Sie hat bei einer »frischen Installation« den folgenden
Inhalt:
<html>
<head>
<! Change this if you want to allow scaling >
<meta name "viewport" content "width default width; user scalable no" />
<meta http equiv "Content type" content "text/html; charset utf 8">
<title>autohaus</title>
<! iPad/iPhone specific css below, add after your main css >
<link rel "stylesheet" media "only screen and (max device width: 1024px)"
href "ipad.css" type "text/css" />
<link rel "stylesheet" media "only screen and (max device width: 480px)"
href "iphone.css" type "text/css" />
>
<script type "text/javascript" charset "utf 8"
src "phonegap.js"></script>
<script type "text/javascript" charset "utf 8">
// If you want to prevent dragging, uncomment this section
/*
function preventBehavior(e)
{
e.preventDefault();
};
document.addEventListener("touchmove", preventBehavior, false);
*/
function onBodyLoad()
{
Search WWH ::




Custom Search