-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 980 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
<! DOCTYPE html>
<html manifest = "ma.appcache" lang="ru">
<head>
<title>Auto notes</title>
<link rel="apple-touch-icon" href="icon.png">
<link rel="apple-touch-startup-image" href="splash.png">
<meta name="apple-mobile-web-app-title" content="Audi 80">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link href="index.css" rel="stylesheet">
</head>
<body>
<div class=panel>
Audi 80
<img class=new src="new.png" onclick=openNote()></img>
</div>
<div id=items></div>
<div id=edit>
<div id=panel>
.
<img class=back src="back.png" onclick=closeNote()></img>
<span class=done onclick=doneNote()>Готово</span>
</div>
<textarea id=note spellcheck="false"></textarea>
</div>
</body>
</html>
<script src="index.js"></script>