🧭 Decoding a URL Address!
Every webpage has a address bar link called a URL (Uniform Resource Locator). Let's dissect one:
https://nextsem.online/html?search=tags
Example
Example
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8">
5
<title>URL & Hyperlink Demo</title>
6
<style>
7
body { font-family: sans-serif; background: #0f172a; color: #fff; padding: 24px; }
8
.url-box { background: #1e293b; padding: 20px; border-radius: 12px; border: 1px solid #334155; }
9
a { color: #04AA6D; font-weight: bold; text-decoration: underline; }
10
</style>
11
</head>
12
<body>
13
14
<div class="url-box">
15
<h2>Interactive URL Link</h2>
16
<p>Click below to navigate using query parameters:</p>
17
<a href="https://nextsem.online/html?topic=attributes" target="_blank">
18
https://nextsem.online/html?topic=attributes
19
</a>
20
</div>
21
22
</body>
23
</html>
