Convert text to SVG paths quickly and easily

Back

Vintage

Vintage effect with grain texture

Vintage
<svg viewBox="0 0 600 120">
    <defs>
        <filter id="grain">
            <feTurbulence baseFrequency="0.9" numOctaves="1" result="n"/>
            <feColorMatrix type="saturate" values="0" in="n" result="mono"/>
            <feBlend in="SourceGraphic" in2="mono" mode="multiply"/>
        </filter>
    </defs>
    <rect width="100%" height="100%" fill="#ffffff"/>
    <text x="50%" y="55%" font-size="40" text-anchor="middle" fill="#92400e" style="letter-spacing:2px;" filter="url(#grain)">Vintage</text>
</svg>