-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (65 loc) · 2.89 KB
/
index.html
File metadata and controls
70 lines (65 loc) · 2.89 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/src/public/favicon.ico" />
<link rel="icon" type="image/png" sizes="16x16" href="/src/public/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/src/public/favicon-32x32.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/src/public/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="192x192" href="/src/public/android-chrome-192x192.png" />
<link rel="icon" type="image/png" sizes="512x512" href="/src/public/android-chrome-512x512.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CommonForms - AI-Powered PDF Form Field Detection in Browser</title>
<meta
name="description"
content="Automatically detect and add form fields to PDFs using CommonForms AI models. Free browser-based tool using ONNX Runtime - no server upload required."
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="CommonForms - AI-Powered PDF Form Field Detection in Browser" />
<meta
property="og:description"
content="Automatically detect and add form fields to PDFs using CommonForms AI models. Free browser-based tool using ONNX Runtime - no server upload required."
/>
<meta
property="og:image"
content="https://cdn.simplepdf.com/simple-pdf/assets/meta/meta-commonforms-simplepdf.png"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="CommonForms - AI-Powered PDF Form Field Detection in Browser" />
<meta
name="twitter:description"
content="Automatically detect and add form fields to PDFs using CommonForms AI models. Free browser-based tool using ONNX Runtime - no server upload required."
/>
<meta
name="twitter:image"
content="https://cdn.simplepdf.com/simple-pdf/assets/meta/meta-commonforms-simplepdf.png"
/>
<meta
name="keywords"
content="PDF form fields, CommonForms, ONNX Runtime, AI PDF detection, form field detection, browser-based PDF, YOLO detection, PDF automation"
/>
<!-- Prefetch models for faster loading (especially the L one) -->
<link
rel="prefetch"
href="https://us-beautiful-space.nyc3.cdn.digitaloceanspaces.com/commonforms/FFDNet-S.onnx"
as="fetch"
crossorigin="anonymous"
/>
<link
rel="prefetch"
href="https://huggingface.co/jbarrow/FFDNet-L-cpu/resolve/main/FFDNet-L.onnx"
as="fetch"
crossorigin="anonymous"
/>
<link
rel="prefetch"
href="https://us-beautiful-space.nyc3.cdn.digitaloceanspaces.com/commonforms/cerfa_14571-05_LONG_SEJOUR_EN.pdf"
as="fetch"
crossorigin="anonymous"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>