-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 912 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image to PDF Converter</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div style="background-color: rgba(227, 20, 20, 0.088); " class="container">
<h1 style="background-color: rgba(1, 10, 9, 0);">Image to PDF Converter</h1>
<input type="file" id="imageInput" class="file-input" accept="image/*" multiple>
<button onclick="convertToPDF()">Convert to PDF</button>
<div id="preview"></div>
</div>
<div>
<p style="display: flex; margin: 30px;"; >
only jpeg format support
</p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<script src="script.js"></script>
</body>
</html>