-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (34 loc) · 1.69 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- This is a comment. Everything between the opening and closing > is ignored by the browser.
We'll use that to provide you with some help.
You can safely delete the comments once you're done with them. -->
<!-- This is the title of your page. Change it at will. For example: Joe's great space game -->
<title>Hello world!</title>
<!-- Search engines sometimes use this when showing results. Change it to match your page's contents -->
<meta name="description" content="My first page is a carefully crafted example of web awesomeness.">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<h1>HelloWorld app</h1>
<div id="content">
<p>Welcome to your awesome web app!</p>
<p>This was created from the <a href="https://github.com/mozilla/mortar-app-stub">mortar-app-stub</a>
template, one of the <a href="https://github.com/mozilla/mortar">mortar templates</a>.</p>
<button id="install-btn">Install</button>
<br/><br/>
<button onClick="javascript:alert('It Works!')">Alert!</button>
<br/>
<button onClick="javascript:window.navigator.vibrate([200, 200, 200])">Vibrate!</button>
<br/>
<button onClick="javascript:location.href='devconfu.html'">DevConFu App</button>
<br/>
<button onClick="javascript:location.href='http://demo.wtf.lv/firefox-os/?full#future-reading'">More info</button>
</div>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>