-
Notifications
You must be signed in to change notification settings - Fork 7
/
main.html
41 lines (39 loc) · 1.15 KB
/
main.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 lang="en-US">
<head>
<meta charset="UTF-8">
<title>Alarm Clock</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name = "viewport" content = "user-scalable=no, initial-scale=1.0, maximum-scale=1.0, width=device-width">
<meta name="apple-mobile-web-app-capable" content="yes">
<link type='text/css' rel='stylesheet' href='style.css' />
<script src='script.js' type='text/javascript'></script>
</head>
<body ontouchstart="">
<div id='top-area'>
<div id='youtube-container'></div>
Enter a youtube link as alarm:<br />
<input type='text' id='youtubepath'></input><button id='setYoutube'>ok</button><br />
Or select a local music file:<br />
<input type='file'></input><br />
<button class='top-button'>Settings</button>
</div>
<ul id='alarm-list'>
<!--<li>
<span contenteditable>10:20</span>
<div class='right-container'>
<div class='rotatable'>
<div class='rotate-area'>
<button>Remove</button>
<div class='back'></div>
</div>
</div>
<input type='checkbox' />
</div>
</li>-->
<li id='add-button'>
<span>Add...</span>
</li>
</ul>
</body>
</html>