mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 23:42:53 +08:00
25 lines
969 B
HTML
25 lines
969 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta name = "format-detection" content = "telephone=no">
|
|
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width;" />
|
|
<link rel="stylesheet" type="text/css" href="css/index.css" />
|
|
<title>Hello Cordova</title>
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
<h1>Apache Cordova™</h1>
|
|
<div id="deviceready">
|
|
<p class="status pending blink">Connecting to Device</p>
|
|
<p class="status complete blink hide">Device is Ready</p>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript" src="cordova-2.0.0.js"></script>
|
|
<script type="text/javascript" src="js/index.js"></script>
|
|
<script type="text/javascript">
|
|
app.initialize();
|
|
</script>
|
|
</body>
|
|
</html>
|