SVG Code

<svg xmlns=“http://www.w3.org/2000/svg” viewBox=“0 0 650 500” width=“100%” height=“100%”> <!-- Dark Background --> <rect width=“100%” height=“100%” fill=“#111114” />

<!-- Text Group --> <g font-family=“-apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif” font-size=“20” fill=“#E8E8E8”>

<!-- Header -->
<text x="60" y="60">Dear Patient,</text>
<text x="60" y="120">Below are your test results you took</text>

<!-- Link-styled Date -->
<text x="60" y="155">
  <tspan fill="#6A90E2" text-decoration="underline">06/05/2026</tspan><tspan fill="#E8E8E8">:</tspan>
</text>

<!-- Results List -->
<text x="60" y="230">Hantavirus</text>
<text x="380" y="230">NEGATIVE</text>

<text x="60" y="265">HIV</text>
<text x="380" y="265">POSITIVE</text>

<text x="60" y="300">HPV-1</text>
<text x="380" y="300">POSITIVE</text>

<text x="60" y="335">Chronic Diarrhea</text>
<text x="380" y="335">POSITIVE</text>

<text x="60" y="370">Anal Fissures</text>
<text x="380" y="370">POSITIVE</text>

<text x="60" y="405">Bubonic Plague</text>
<text x="380" y="405">POSITIVE</text>

<text x="60" y="440">Inflamed Testicular Torsion</text>
<text x="380" y="440">POSITIVE</text>

</g>

<!-- Hand-drawn red circle marker effect --> <path d=“M 50 225 C 30 210 45 185 85 180 C 175 170 375 175 465 185 C 505 190 515 220 465 230 C 365 240 95 240 60 230 C 40 225 40 200 60 190 M 375 182 C 425 172 485 170 495 195” fill=“none” stroke=“#B02C2C” stroke-width=“4” stroke-linecap=“round” stroke-linejoin=“round” opacity=“0.9” /> </svg>