<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8" />

    <title>Ping Test 5KB File</title>

    <meta name="description" content="Small static HTML file for latency and connectivity testing." />

    <style>

        body {

            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

            background-color: #ffffff;

            color: #222222;

            margin: 0;

            padding: 24px;

        }

        .container {

            max-width: 640px;

            margin: 0 auto;

        }

        h1 {

            font-size: 24px;

            margin-bottom: 16px;

        }

        p {

            font-size: 14px;

            line-height: 1.5;

            margin: 8px 0;

        }

        code {

            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

            font-size: 13px;

        }

        .block {

            margin-top: 16px;

            padding: 12px;

            border-radius: 8px;

            border: 1px solid #e0e0e0;

            background: #fafafa;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Ping Test HTML (≈5 KB)</h1>

        <p>

            This is a small static HTML document intended for network latency and connectivity testing.

            It contains a consistent text payload so clients can perform lightweight HTTP GET requests.

        </p>


        <div class="block">

            <p>

                Payload block A: This block contains repeated structured text to keep the payload size

                stable across requests. The actual content is not important; only the size matters for

                measuring round-trip times and network quality.

            </p>

            <p>

                Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer vel enim eget odio

                varius tempor. Integer tincidunt, nisi non hendrerit luctus, neque lorem posuere

                lectus, at ultrices mauris nunc vel lorem. Duis vitae massa a augue interdum

                convallis eget sed erat.

            </p>

        </div>


        <div class="block">

            <p>

                Payload block B: Additional filler text to increase the total document size to roughly

                five kilobytes. This content is intentionally verbose so that gzip compression still

                leaves enough bytes on the wire for testing in realistic scenarios.

            </p>

            <p>

                Curabitur feugiat, sem eu sollicitudin vestibulum, ex nisl egestas lorem, nec

                facilisis neque lacus accumsan nunc. Suspendisse potenti. Integer posuere gravida

                ligula, sed semper tellus tempus sed. Sed bibendum lacinia dui, eget efficitur arcu

                tincidunt vitae. Nulla facilisi. Fusce nec nibh sit amet eros cursus blandit.

            </p>

        </div>


        <div class="block">

            <p>

                Payload block C: Repeated descriptive text to make the file size more predictable. You

                can serve this file via a CDN, object storage, or static hosting to act as a stable

                target for periodic polling by clients such as mobile applications.

            </p>

            <p>

                Proin nec imperdiet ligula. Vivamus id massa molestie, viverra sem at, fermentum

                velit. Sed sed maximus lorem, nec finibus libero. Vestibulum tincidunt mattis

                vestibulum. Morbi a arcu ut sem fermentum ultrices. Integer ac iaculis mauris.

                Praesent pulvinar, sem eu congue imperdiet, neque lorem hendrerit ligula, nec

                convallis sem mi ut nisl.

            </p>

        </div>


        <p>

            Static identifier: <code>ping-test-html-5kb-v1</code>

        </p>

    </div>

</body>

</html>