-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
27 lines (22 loc) · 876 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>OCR PDF</title>
<link rel="icon" type="image/x-icon" href="public/icon.ico">
<link rel="stylesheet" href="public/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.10.0/styles/dark.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.10.0/highlight.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
</head>
<body>
<div id="loading">Loading README...</div>
<div id="content" style="display: none;"></div>
<footer>
©
<script>document.write(new Date().getFullYear())</script> ipitio
</footer>
<script src="public/index.js"></script>
</body>
</html>