-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (36 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>
<head>
<meta charset="utf-8">
<title>PDF Conversion</title>
<!-- Dependincies -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
</head>
<html>
<body>
<div class="container">
<h1>File Uploader and Converter</h1>
<h5>By Ellery Addington-White</h5>
<br />
<div class=".col-md-6">
<input type="file" id="files" name="files[]" multiple/>
<br />
<progress id="PROGRESS" value=0 style="width:52%;"></progress>
</div>
<div class=".col-md-6" style="
width: 43%;
position: relative;
top: -82px;
right: -617px;
">
<h3>Preview</h3>
<div id="images" class="well"style="width:100%; height:300px;"></div>
</div>
</div>
<!-- Java script -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="http://mozilla.github.io/pdf.js/build/pdf.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="dependencies/js/conversion.js"></script>
</body>
</html>