-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtry.html
33 lines (32 loc) · 970 Bytes
/
try.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
<!doctype html5>
<html manifest="cache.manifest">
<meta name="viewport" content="width=device-width, user-scalable=no initial-scale=1">
<CENTER>
<body>
<header class="banner"><h1>HTML5 Photos</h1></header>
<section class="entry">
<input type="file" accept="image/*;capture=camera">
<div class="latest">
<div class="menu">
<span class="command">save</span>
</div>
<img />
</div>
</section>
<section class="album">
<header><h1>Album</h1> <span class="empty command">clear</span></header>
<div class="photos">
<script type="x-template" id="photoTemplate">
<div class="photo">
<div class="menu">
<span><%= name %></span>
<span class="command open">open</span>
</div>
<img src="<%= url %>">
</div>
</script>
</div>
</section>
</body>
</CENTER>
</html>