<!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 0l-2.972 5.15H5.432v6.354L0 14.64 3.094 20 0 25.359l5.432 3.137v5.905h5.975L14.638 40l5.36-3.094L25.358 40l3.232-5.6h6.162v-6.01L40 25.359l-3.095-5.359L40 14.641l-5.248-3.03v-6.46h-6.419L25.358 0l-5.36 3.094Zm7.415 11.225 2.254 2.287-11.43 11.5-6.835-6.93 2.244-2.258 4.587 4.581 9.18-9.18Z"
            fill-rule="evenodd"
        ></path>
    </svg>

</span>

</body>

</html>