-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (79 loc) · 3.97 KB
/
index.html
File metadata and controls
88 lines (79 loc) · 3.97 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>LRC Generator - Free Online Lyrics Synchronization Tool</title>
<meta name="title" content="LRC Generator - Free Online Lyrics Synchronization Tool" />
<meta name="description" content="Create synchronized lyrics files (.lrc) for your music. Paste lyrics, sync with audio playback, and download professional LRC files. Free, easy-to-use web application." />
<meta name="keywords" content="LRC generator, lyrics synchronization, music lyrics, LRC file, karaoke, music player, lyrics editor, audio sync" />
<meta name="author" content="Alien501" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<meta name="revisit-after" content="7 days" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lrc-gen.alien501.in//" />
<meta property="og:title" content="LRC Generator - Free Online Lyrics Synchronization Tool" />
<meta property="og:description" content="Create synchronized lyrics files (.lrc) for your music. Paste lyrics, sync with audio playback, and download professional LRC files. Free, easy-to-use web application." />
<meta property="og:image" content="https://lrc-gen.alien501.in//screenshot/image.png" />
<meta property="og:site_name" content="LRC Generator" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://lrc-gen.alien501.in//" />
<meta property="twitter:title" content="LRC Generator - Free Online Lyrics Synchronization Tool" />
<meta property="twitter:description" content="Create synchronized lyrics files (.lrc) for your music. Paste lyrics, sync with audio playback, and download professional LRC files. Free, easy-to-use web application." />
<meta property="twitter:image" content="https://lrc-gen.alien501.in//screenshot/image.png" />
<!-- Additional SEO Meta Tags -->
<meta name="theme-color" content="#000000" />
<meta name="msapplication-TileColor" content="#000000" />
<meta name="application-name" content="LRC Generator" />
<!-- Canonical URL -->
<link rel="canonical" href="https://lrc-gen.alien501.in//" />
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Preload critical resources -->
<link rel="preload" href="/src/assets/fonts/satoshi.ttf" as="font" type="font/ttf" crossorigin />
<link rel="preload" href="/me.jpg" as="image" />
<!-- DNS prefetch for external resources -->
<link rel="dns-prefetch" href="//img.buymeacoffee.com" />
<link rel="dns-prefetch" href="//github.com" />
<link rel="dns-prefetch" href="//www.linkedin.com" />
<link rel="dns-prefetch" href="//t.me" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "LRC Generator",
"description": "Free online tool for creating synchronized lyrics files (.lrc) for music",
"url": "https://lrc-gen.alien501.in//",
"applicationCategory": "MultimediaApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Person",
"name": "Alien501"
},
"featureList": [
"Paste and edit lyrics",
"Real-time audio synchronization",
"Export to LRC format",
"Line-by-line and word-by-word sync modes",
"Free to use"
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>