-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmosaic.html
More file actions
39 lines (34 loc) · 978 Bytes
/
mosaic.html
File metadata and controls
39 lines (34 loc) · 978 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mosaic</title>
<style>
label {
display: block;
}
.error {
color: red;
}
.mosaic {
line-height: 0;
margin-top: 10px;
}
</style>
</head>
<body>
<h1>Mosaic</h1>
<div class="form">
<div class="form-field">
<label for="imageInput">Upload an image</label>
<input id="imageInput" type="file" name="image_file" accept=".gif,.jpg,.jpeg,.png"/>
</div>
<div id="errorMessage" class="error"></div>
</div>
<div id="imageOutput" class="mosaic">
</div>
<script src="js/mosaic.js"></script>
<script src="js/client.js"></script>
</body>
</html>