This page includes a tracking pixel — a 1x1 transparent GIF that triggers a request to tracking-pixel.php. Open your browser DevTools Network tab to see the request.
<img> tag pointing to tracking-pixel.php with query parameters.pixel-hits.jsonl.Here is the exact <img> tag embedded in this page:
<img src="tracking-pixel.php?page=/pixel-demo&t=pageview&r=TIMESTAMP"
width="1" height="1" alt=""
style="position:absolute;left:-9999px">
The r parameter is a cache-buster — a unique timestamp that prevents the browser from serving a cached version of the pixel. Without it, returning to this page might not generate a new request.
tracking-pixel.php. Click on it to inspect the request headers — you will see User-Agent, Referer, Accept-Language, and the query parameters.
This page also includes a <noscript> tracking pixel. If JavaScript is disabled in your browser, this fallback image will still fire, and the server will still log the request. The js=0 parameter lets the server know that JavaScript was not available.
<noscript>
<img src="tracking-pixel.php?page=/pixel-demo&t=pageview&js=0"
width="1" height="1" alt="">
</noscript>