blob: 0bcd3358cf70e7791ddecc23904781b778420bde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script type="text/javascript" src="demo.js"></script>
<label for="image">Add Images to Album</label>
<input type="file" id="image" multiple accept="image" name="image" onchange="addimages()"/>
<button onclick="download()">Download Photo Album</button>
<button onclick="reset()">Reset</button>
<hr/>
<h3><em>Album Preview</em></h3>
<div id="preview"></div>
</div>
<dialog id="modal"></dialog>
</body>
</html>
|