From d4c62539c5eed40c083ef5471d0cee8c142179dd Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Wed, 18 Feb 2026 12:00:43 -0600 Subject: [PATCH] feat: created example url for tracking links page --- .../remove-tracking-params-from-links.md | 204 +++++++++++++++++- 1 file changed, 203 insertions(+), 1 deletion(-) diff --git a/posts/drafts/remove-tracking-params-from-links.md b/posts/drafts/remove-tracking-params-from-links.md index 92de747..3a7c6f6 100644 --- a/posts/drafts/remove-tracking-params-from-links.md +++ b/posts/drafts/remove-tracking-params-from-links.md @@ -2,7 +2,209 @@ parts of a url: - + + +
+
+ https://www.example.com:443/products/shoes?utm_source=facebook&utm_campaign=summer_sale&fbclid=abc123#reviews +
+ +
+
+ + Protocol + How to communicate with the server (https is encrypted, http is not) +
+
+ + Subdomain + A subdivision of the main domain, often used for different services +
+
+ + Domain + The human-readable name that identifies the website +
+
+ + TLD + Top-Level Domain, the suffix like .com, .org, or .net +
+
+ + Port + Network port number (443 is default for HTTPS, 80 for HTTP) +
+
+ + Path + The specific page or resource location on the server +
+
+ + Query Params + Key-value pairs that pass data to the page  often used for tracking +
+
+ + Fragment + Links to a specific section within the page (not sent to server) +
+
+
+ + explain what each part does