SVG Code
<svg xmlns=“http://www.w3.org/2000/svg” viewBox=“0 0 400 450” width=“100%” height=“100%”> <defs> <filter id=“drop-shadow” x=“-20%” y=“-20%” width=“140%” height=“140%”> <feDropShadow dx=“4” dy=“4” stdDeviation=“3” flood-opacity=“0.4”/> </filter> </defs>
<style> .large-text { font-family: ‘Arial’, sans-serif; font-size: 170px; font-weight: 900; fill: red; text-anchor: middle; letter-spacing: -2px; } .small-text { font-family: ‘Arial’, sans-serif; font-size: 32px; font-weight: 800; fill: red; text-anchor: middle; } </style>
<text x=“200” y=“190” class=“large-text” filter=“url(#drop-shadow)”>/S</text>
<text x=“200” y=“270” class=“small-text”>Sex offenders are</text> <text x=“200” y=“305” class=“small-text”>using This</text> <text x=“200” y=“340” class=“small-text”>symbol to identify</text> <text x=“200” y=“375” class=“small-text”>each other On</text> <text x=“200” y=“410” class=“small-text”>the internet</text> </svg>

