-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 2.04 KB
/
Copy pathindex.html
File metadata and controls
52 lines (49 loc) · 2.04 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSV Viewer & Editor | Open and Explore CSV Files</title>
<meta
name="description"
content="Open, view, and inspect CSV files directly in your browser. Drag and drop files, paste CSV text, reorder columns, and control table visibility."
/>
<meta
name="keywords"
content="CSV viewer, CSV editor, CSV file viewer, online CSV tool, spreadsheet viewer, data table"
/>
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#0f172a" />
<link rel="canonical" href="https://jsramraj.github.io/csv-viewer-editor/" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://jsramraj.github.io/csv-viewer-editor/" />
<meta property="og:title" content="CSV Viewer & Editor" />
<meta
property="og:description"
content="Open and inspect CSV files in your browser with column controls and fast table preview."
/>
<meta property="og:image" content="/favicon.svg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="CSV Viewer & Editor" />
<meta
name="twitter:description"
content="Open and inspect CSV files in your browser with column controls and fast table preview."
/>
<meta name="twitter:image" content="/favicon.svg" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "CSV Viewer & Editor",
"applicationCategory": "BusinessApplication",
"operatingSystem": "Any",
"description": "A browser-based tool to open, preview, and inspect CSV files with column visibility and ordering controls."
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>