|
1 | 1 |
|
2 | 2 | <!DOCTYPE html> |
3 | | -<html> |
| 3 | +<html lang="en"> |
4 | 4 |
|
5 | 5 | <head> |
6 | | - <title>Diffview</title> |
| 6 | + <title>Diffview - Online Text Diff Tool | Line-by-Line and Character-by-Character Comparison</title> |
| 7 | + <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."> |
| 8 | + <meta name="keywords" content="diff tool, text comparison, file diff, line diff, character diff, online diff, text compare, code comparison"> |
| 9 | + <meta name="author" content="Diffview"> |
| 10 | + <meta name="robots" content="index, follow"> |
| 11 | + |
| 12 | + <!-- Open Graph / Facebook --> |
| 13 | + <meta property="og:type" content="website"> |
| 14 | + <meta property="og:url" content="https://diffview.com/"> |
| 15 | + <meta property="og:title" content="Diffview - Online Text Diff Tool"> |
| 16 | + <meta property="og:description" content="Compare text differences line-by-line and character-by-character with this lightweight online diff tool."> |
| 17 | + <meta property="og:image" content="https://cdn.tiye.me/logo/diffview.png"> |
| 18 | + |
| 19 | + <!-- Twitter --> |
| 20 | + <meta property="twitter:card" content="summary_large_image"> |
| 21 | + <meta property="twitter:url" content="https://diffview.com/"> |
| 22 | + <meta property="twitter:title" content="Diffview - Online Text Diff Tool"> |
| 23 | + <meta property="twitter:description" content="Compare text differences line-by-line and character-by-character with this lightweight online diff tool."> |
| 24 | + <meta property="twitter:image" content="https://cdn.tiye.me/logo/diffview.png"> |
| 25 | + |
7 | 26 | <link href="https://cdn.tiye.me/logo/diffview.png" rel="icon" type="image/png" /> |
8 | 27 | <meta charset="utf-8"> |
9 | 28 | <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/> |
10 | 29 | <link rel="stylesheet" type="text/css" href="//cdn.tiye.me/favored-fonts/main-fonts.css"> |
11 | 30 | <link rel="stylesheet" type="text/css" href="./assets/main.css"> |
| 31 | + |
| 32 | + <!-- Structured Data --> |
| 33 | + <script type="application/ld+json"> |
| 34 | + { |
| 35 | + "@context": "https://schema.org", |
| 36 | + "@type": "WebApplication", |
| 37 | + "name": "Diffview", |
| 38 | + "description": "A tiny tool to diff by line and by character. Compare text differences with easy-to-read visualization.", |
| 39 | + "url": "https://diffview.com/", |
| 40 | + "applicationCategory": "DeveloperApplication", |
| 41 | + "operatingSystem": "Web Browser", |
| 42 | + "offers": { |
| 43 | + "@type": "Offer", |
| 44 | + "price": "0", |
| 45 | + "priceCurrency": "USD" |
| 46 | + }, |
| 47 | + "featureList": [ |
| 48 | + "Line-by-line text comparison", |
| 49 | + "Character-by-character diff", |
| 50 | + "Syntax highlighting", |
| 51 | + "Fast and lightweight", |
| 52 | + "No registration required" |
| 53 | + ] |
| 54 | + } |
| 55 | + </script> |
12 | 56 | </head> |
13 | 57 |
|
14 | 58 | <body> |
|
0 commit comments