-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
41 lines (38 loc) · 1.19 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
<!DOCTYPE HTML>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools-yui-compressed.js"></script>
<script src="storage.js"></script>
<script src="example.js"></script>
<script>
</script>
</head>
<body>
<h1 id="title">Html5 Local Storage</h1>
<a href="#" id="save-data">Save local values</a>
<a href="#" id="clear">Clear Data</a>
<ul>
<li>
<label for="number">Numbers</label>
<input type="text" id="numbers" name="numbers" />
</li>
<li>
<label for="string">String</label>
<input type="text" id="string" name="string" />
</li>
<li>
<label for="number">Boolean (True of False)</label>
<input type="radio" name="bool" value="false"/> <label for="false">False</label>
<input type="radio" name="bool" value="true"/> <label for="tre">True</label>
</li>
<li>
<label for="number">Array</label>
<input type="text" id="array" name="array" />
<p>separate values with commas</p>
</li>
</ul>
<h2>my list</h2>
<ul id="list">
</ul>
</body>
</html>