cordova-plugin-httpd
Version:
Cordova Plugin to embed httpd (web server) into Cordova App
31 lines (24 loc) • 1.09 kB
HTML
<html>
<head>
<meta 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" />
<title>Hello World</title>
<script type="text/javascript" src="cordova.js"></script>
<style type="text/css">
html, body { width:100%; height:100%; margin:0; padding:0; overflow:hidden; background-color:white; }
div#fullpage { width:100%; height:100%; margin:0; padding:0; border:0px solid red; text-align:center; vertical-align:middle; }
button { font-size: 18px; }
</style>
</head>
<body>
<div id="fullpage">
<p>Demo for CorHttpd Plugin</p>
<p>It works! </p>
<p>This page is in your cordova-httpd www/htdocs.</p>
<p>Replace this folder with your web content.</p>
<p><button onclick="history.back();">Back</button></p>
</div>
</body>
</html>