-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 1.15 KB
/
index.html
File metadata and controls
25 lines (24 loc) · 1.15 KB
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
<!doctype html>
<html>
<head>
<title>Remote Firework Interface</title>
<link rel="stylesheet" type="text/css" href="css/main.css" media="all">
<link rel="stylesheet" type="text/css" href="css/landscape.css" media="all and (orientation:landscape)">
<link rel="stylesheet" type="text/css" href="css/portrait.css" media="all and (orientation:portrait)">
<link rel="apple-touch-icon" href="img/app-icon.png">
<link rel="apple-touch-startup-image" href="/img/launch.png">
<meta name="apple-mobile-web-app-title" content="IgnitePi">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="user-scalable=no">
</head>
<body>
<div id="top">
<h1>Remote Firework Igniter</h1>
<h2>Status: <span id="status">No Pin Selected</span></h2>
</div>
<button>LAUNCH</button>
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/maincontroller.js"></script>
</body>
</html>