-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
145 lines (136 loc) · 5.75 KB
/
index.html
File metadata and controls
145 lines (136 loc) · 5.75 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- HTML Meta Tags -->
<title>URL Shortener App</title>
<meta name="description" content="Fast, reliable short links generator using 404 page. Create and manage unlimited short URLs with ease.">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="URL Shortener App">
<meta itemprop="description" content="Fast, reliable short links generator using 404 page. Create and manage unlimited short URLs with ease.">
<meta itemprop="image" content="https://harys722.github.io/url-shortener/media/logo.png">
<!-- Discord Meta Tags -->
<meta name="theme-color" content="#ADD8E6" />
<meta property="og:title" content="URL Shortener App" />
<meta property="og:description" content="Fast, reliable short links generator using 404 page. Create and manage unlimited short URLs with ease." />
<meta property="og:image" content="https://harys722.github.io/url-shortener/media/logo.png" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://harys722.github.io/url-shortener/">
<meta property="og:type" content="website">
<meta property="og:title" content="URL Shortener App">
<meta property="og:description" content="Fast, reliable short links generator using 404 page. Create and manage unlimited short URLs with ease.">
<meta property="og:image" content="https://harys722.github.io/url-shortener/media/logo.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="URL Shortener App">
<meta name="twitter:description" content="Fast, reliable short links generator using 404 page. Create and manage unlimited short URLs with ease.">
<meta name="twitter:image" content="https://harys722.github.io/url-shortener/media/logo.png">
<!-- Links -->
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<div class="container">
<div class="logo">⚡</div>
<h1 class="title">URL Shortener</h1>
<p class="subtitle">
Fast, reliable short links generator using 404 page.<br />
Create and manage unlimited short URLs with ease.
</p>
<div class="features">
<div class="feature">
<div class="feature-icon">🚀</div>
<div class="feature-title">Lightning Fast</div>
<div class="feature-desc">
Instant redirects with no delays or loading screens.
</div>
</div>
<div class="feature">
<div class="feature-icon">⚙️</div>
<div class="feature-title">Easy to Manage</div>
<div class="feature-desc">
Simple JSON configuration for unlimited short links.
</div>
</div>
<div class="feature">
<div class="feature-icon">🔒</div>
<div class="feature-title">Secure & Reliable</div>
<div class="feature-desc">
Can be hosted on GitHub Pages or other hosting platform with 99.9%
uptime guarantee.
</div>
</div>
<div class="feature">
<div class="feature-icon">📝</div>
<div class="feature-title">Dashboard</div>
<div class="feature-desc">
A simple one-page dashboard to view your all active short links.
Yes, we call it 'Dashboard' :) .
</div>
</div>
</div>
<div class="how-it-works">
<h3>🛠️ How it works</h3>
<div class="step">
<div class="step-number">1</div>
<div class="step-text">
Fork and star the
<a
href="https://github.com/harys722/url-shortener/fork"
target="_blank"
>GitHub repository</a
>
made by
<a href="https://github.com/harys722/" target="_blank">harys722</a>.
</div>
</div>
<div class="step">
<div class="step-number">2</div>
<div class="step-text">
Enable <b>GitHub Pages</b> or choose any other hosting service, such
as Netlify or Vercel.
</div>
</div>
<div class="step">
<div class="step-number">3</div>
<div class="step-text">
Edit your <code>links.json</code> file:
<div class="code-example">
{<br />
"example": "https://example.com/",<br />
"google": "https://google.com/",<br />
"github": "https://github.com/"<br />
}
</div>
</div>
</div>
<div class="step">
<div class="step-number">4</div>
<div class="step-text">404 page handles all the short links.</div>
</div>
<div class="step">
<div class="step-number">5</div>
<div class="step-text">
Share your short links:
<code>https://yourdomain.com/example</code>
</div>
</div>
<div class="step">
<div class="step-number">6</div>
<div class="step-text">
Users get redirected instantly to the target URL!
</div>
</div>
</div>
<footer>
<p>
<b>© 2025 URL Shortener App</b>. Made with ❤︎ by
<a href="https://github.com/harys722/" target="_blank">harys722</a>
</p>
</footer>
</div>
</body>
</html>