-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.22 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Text Diff Checker</title>
<meta name="description" content="Compare text files with syntax highlighting for multiple formats" />
<meta name="author" content="Alkinum" />
<meta name="keywords" content="text diff, text comparison, code diff, file comparison, syntax highlighting" />
<meta name="robots" content="index, follow" />
<link rel="icon" href="/favicon.png" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Text Diff Checker" />
<meta property="og:description" content="Compare text files with syntax highlighting for multiple formats" />
<meta property="og:site_name" content="Text Diff Checker" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Text Diff Checker" />
<meta name="twitter:description" content="Compare text files with syntax highlighting for multiple formats" />
<meta name="theme-color" content="#4285f4" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>