-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·27 lines (27 loc) · 983 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>TiPi - Tiny Picture Uploader </title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript" src="./main.js"></script>
<link href='http://fonts.googleapis.com/css?family=Finger+Paint' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<a href="./"><div id="logo">TiPi</div></a>
<div id="panel">
<a href="./#about">About</a> | <a href="./#history">History</a> | <a href="./#contact">Contact</a>
</div>
<br />
<div id="holder">
<div id="draghere"> drag & drop to upload your tiny picture !</div>
<input type="file" id="fileElem" multiple accept="image/*" style="display:none" onchange="readfiles(this.files)">
</div>
<div id="cnt">
<progress id="uploadprogress" min="0" max="100" value="0" class="hide">0</progress>
</div>
</body>
</html>