-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (28 loc) · 960 Bytes
/
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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Battery indicator</title>
<link rel="icon" type="image/png" href="img/icon-128.png">
<meta name="viewport" content="width=device-width">
<link href="style/style.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>Battery indicator</h1>
<div class="text-indicator">
<p id="indicator1"></p>
<p id="indicator2"></p>
</div>
<div class="icon-indicator">
<div id="battery-top"></div>
<div id="battery-charge"></div>
<div id="battery-charging"></div>
</div>
<button id="install">
Install app on device
</button>
<p><a href="http://thenounproject.com/noun/lightning-bolt/#icon-No17546" target="_blank">Lightning Bolt</a> designed by <a href="http://thenounproject.com/Frontera" target="_blank">Frontera Taller de Arquitectura </a> from The Noun Project.</p>
</body>
<script src="scripts/battery.js"></script>
<script src="scripts/install.js"></script>
</html>