-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 1.13 KB
/
index.html
File metadata and controls
40 lines (35 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LNKD - Shorten. Ping. Link.</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/styling.css">
</head>
<body>
<div class="container">
<h1 class="title">LNKD</h1>
<p class="subtitle">Shorten your links. & Track engagement.</p>
<form class="form" id="shortenForm">
<input type="url" class="input" id="urlInput" placeholder="Paste your long URL here..." required>
<button class="button" type="submit">Shorten</button>
</form>
<div class="result" id="result"></div>
<div class="stats">
<div class="card">
<h3>Total: Links Shortened</h3>
<p id="totalLinks">Fetching...</p>
</div>
<div class="card">
<h3>Most Clicked</h3>
<p id="totalClicks">Fetching...</p>
</div>
</div>
<footer class="footer">
© 2025 LNKD. All rights reserved.
</footer>
</div>
<script src="./js/main.js"></script>
</body>
</html>