-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (55 loc) · 2.65 KB
/
index.html
File metadata and controls
65 lines (55 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Diffview - Online Text Diff Tool | Line-by-Line and Character-by-Character Comparison</title>
<meta name="description" content="Diffview is a lightweight, fast online tool for comparing text differences. Compare files line-by-line and character-by-character with easy-to-read diff visualization.">
<meta name="keywords" content="diff tool, text comparison, file diff, line diff, character diff, online diff, text compare, code comparison">
<meta name="author" content="Diffview">
<meta name="robots" content="index, follow">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://diffview.com/">
<meta property="og:title" content="Diffview - Online Text Diff Tool">
<meta property="og:description" content="Compare text differences line-by-line and character-by-character with this lightweight online diff tool.">
<meta property="og:image" content="https://cdn.tiye.me/logo/diffview.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://diffview.com/">
<meta property="twitter:title" content="Diffview - Online Text Diff Tool">
<meta property="twitter:description" content="Compare text differences line-by-line and character-by-character with this lightweight online diff tool.">
<meta property="twitter:image" content="https://cdn.tiye.me/logo/diffview.png">
<link href="https://cdn.tiye.me/logo/diffview.png" rel="icon" type="image/png" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/>
<link rel="stylesheet" type="text/css" href="//cdn.tiye.me/favored-fonts/main-fonts.css">
<link rel="stylesheet" type="text/css" href="./assets/main.css">
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Diffview",
"description": "A tiny tool to diff by line and by character. Compare text differences with easy-to-read visualization.",
"url": "https://diffview.com/",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Line-by-line text comparison",
"Character-by-character diff",
"Syntax highlighting",
"Fast and lightweight",
"No registration required"
]
}
</script>
</head>
<body>
<div class="app" ></div>
<script type="module" src="./main.js" ></script>
</body>
</html>