-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (40 loc) · 1.59 KB
/
Copy pathindex.html
File metadata and controls
46 lines (40 loc) · 1.59 KB
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
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>Img to PDF converter</title>
<link rel="preload" href="fonts/Raleway/Raleway-Regular.ttf" as="font"/>
<link rel="stylesheet" href="styles/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="styles/main.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div class="container">
<div class="left-pane">
<h2 class="greeting">Hey there!</h2>
<img src="images/pc-user.png" width="400"/>
</div>
<div class="right-pane">
<h1 class="main-heading">Easily Convert IMG to PDF</h1>
<form id="form" class="main-form">
<p id="instruction">Choose Images</p>
<label for="image-picker" id="image-picker-label">
<i class="fa fa-upload"></i> <span>Click here to select images<span>
</label>
<input id="image-picker" name="images" type="file" hidden accept="image/*" id="image-picker" multiple />
<div id="select-container">
<label for="margin-select">MARGIN</label>
<select name="margin" id="margin-select">
<option selected value="0">None</option>
<option value="10">Small</option>
<option value="20">Medium</option>
<option value="30">Large</option>
</select>
</div>
<button id="convert-btn" class="btn" disabled><i id="submit-spinner" class="fa fa-spinner"></i><span id="submit-text">Convert to PDF</span></button>
</form>
</div>
</div>
<script src="scripts/jspdf.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>