<!DOCTYPE html>
<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport"
      content="width=device-width,initial-scale=1">

<title>Verified</title>

<style>

body {
    margin: 0;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    font-family: Arial, sans-serif;
}

.verified {
    display: inline-flex;

    align-items: center;

    gap: 3px;

    font-family: Arial, sans-serif;

    font-size: 16px;

    font-weight: 600;
}

.verified-badge {
    width: 14px;
    height: 14px;

    fill: rgb(0,149,246);
}

</style>

</head>

<body>

<span class="verified">

    verified

    <svg
        class="verified-badge"
        aria-label="Verified"
        role="img"
        viewBox="0 0 40 40"
    >

        <path
            d="M19.998 3.094
            14.638 0
            11.666 5.15
            5.432 5.15
            5.432 11.504
            0 14.64
            3.094 20
            0 25.359
            5.432 28.496
            5.432 34.401
            11.407 34.401
            14.638 40
            19.998 36.906
            25.358 40
            28.59 34.4
            34.752 34.4
            34.752 28.39
            40 25.359
            36.905 20
            40 14.641
            34.752 11.611
            34.752 5.15
            28.333 5.15
            25.358 0
            19.998 3.094Z

            M17.07 27.2
            10.24 20.27
            12.48 18.01
            14.63 15.84
            17.07 18.28
            25.37 9.98
            28.00 12.61
            17.07 23.55
            12.04 18.52
            9.40 21.15
            17.07 27.2Z"
            fill-rule="evenodd"
        >

        </path>

    </svg>

</span>

</body>

</html>