-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (63 loc) · 3.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>To Do List</title>
<link rel="manifest" href="./manifest.json">
<!-- apple stuff -->
<!-- icon to use -->
<link rel="apple-touch-icon" href="./images/apple-touch-icon.png">
<!-- name to display for icon -->
<meta name="apple-mobile-web-app-title" content="Toodley do list">
<!-- use full screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- apple splash image -->
<link rel="apple-touch-startup-image" href="/icons-500.png">
<link href="splashscreens/iphone5_splash.png" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="splashscreens/iphone6_splash.png" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="splashscreens/iphoneplus_splash.png" media="(device-width: 621px) and (device-height: 1104px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image" />
<link href="splashscreens/iphonex_splash.png" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image" />
<link href="splashscreens/iphonexr_splash.png" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="splashscreens/iphonexsmax_splash.png" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image" />
<link href="splashscreens/ipad_splash.png" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="splashscreens/ipadpro1_splash.png" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="splashscreens/ipadpro3_splash.png" media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="splashscreens/ipadpro2_splash.png" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="./style.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="./images/favicon.ico" type="image/icon">
<link rel="icon" href="./images/favicon.ico" type="image/icon">
</head>
<body>
<div class="box">
<h1>To do list</h1>
<div>
<button id="button-remove-all-done">Clear Completed</button>
</div>
<form id="form">
<input id="input" type="text" placeholder="What needs doing?">
<input type="submit" id="submit">
</form>
<div id="button-panel">
<button class="active" id="button-all">All</button>
<button id="button-active">Active</button>
<button id="button-completed">Completed</button>
<button id="button-removed">Removed</button>
</div>
<div id="root">
<!--
<div>
<input id="1" type="checkbox" checked>
<del>
<label for="1">First thing</label>
</del>
<button id="delete-1">✖</button>
</div>
-->
</div>
<script src="./redax.js"></script>
<script src="./app.js"></script>
<script src="./app.test.js"></script>
</div>
</body>
</html>