Spaces:
Running
Running
Update index.html
Browse files- index.html +18 -22
index.html
CHANGED
@@ -1,29 +1,25 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
-
|
4 |
<head>
|
5 |
-
<meta charset="UTF-8"
|
6 |
-
<
|
7 |
-
|
8 |
-
<
|
9 |
-
<title>Transformers.js - Object Detection</title>
|
10 |
</head>
|
11 |
-
|
12 |
<body>
|
13 |
-
<
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
<script src="index.js"
|
27 |
</body>
|
28 |
-
|
29 |
</html>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
|
|
3 |
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>PDF Analyzer</title>
|
7 |
+
<link rel="stylesheet" href="style.css">
|
|
|
8 |
</head>
|
|
|
9 |
<body>
|
10 |
+
<div id="app">
|
11 |
+
<div class="container">
|
12 |
+
<div class="upload-area">
|
13 |
+
<input type="file" accept=".pdf" multiple id="file-upload" class="hidden">
|
14 |
+
<label for="file-upload" class="upload-label">
|
15 |
+
<div class="upload-icon"></div>
|
16 |
+
<span>Drop PDF files here or click to upload</span>
|
17 |
+
</label>
|
18 |
+
</div>
|
19 |
+
<div id="loading" class="loading hidden"></div>
|
20 |
+
<div id="analysis-results" class="analysis-results"></div>
|
21 |
+
</div>
|
22 |
+
</div>
|
23 |
+
<script src="index.js"></script>
|
24 |
</body>
|
|
|
25 |
</html>
|