Text
<svg viewBox="0 0 350 200" xmlns="http://www.w3.org/2000/svg"> <defs> <!-- Paper texture --> <filter id="paper"> <feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" result="noise"/> <feColorMatrix type="saturate" values="0"/> <feBlend in="SourceGraphic" in2="noise" mode="multiply" result="blend"/> </filter> <!-- Emboss effect --> <filter id="emboss"> <feGaussianBlur in="SourceAlpha" stdDeviation="0.5" result="blur"/> <feOffset in="blur" dx="0.5" dy="0.5" result="offsetBlur"/> <feSpecularLighting in="blur" surfaceScale="5" specularConstant=".75" specularExponent="20" result="specOut"> <fePointLight x="-5000" y="-10000" z="20000"/> </feSpecularLighting> <feComposite in="specOut" in2="SourceAlpha" operator="in" result="specOut"/> <feComposite in="SourceGraphic" in2="specOut" operator="arithmetic" k1="0" k2="1" k3="1" k4="0"/> </filter> </defs> <!-- Card background --> <rect width="350" height="200" fill="#f2f2e9" filter="url(#paper)"/> <!-- Phone --> <text x="25" y="40" font-family="Garamond" font-size="14" fill="#2f2f2f" filter="url(#emboss)"> 604 524 7700 </text> <!-- Company --> <text x="325" y="30" text-anchor="end" font-family="Garamond" font-size="14" fill="#2f2f2f" filter="url(#emboss)"> NCRMD </text> <text x="325" y="48" text-anchor="end" font-family="Garamond" fill="#2f2f2f" filter="url(#emboss)"> <tspan font-size="14">O</tspan><tspan font-size="11">UR </tspan> <tspan font-size="14">S</tspan><tspan font-size="11">IN </tspan> <tspan font-size="14">S</tspan><tspan font-size="11">PECIALIST</tspan> </text> <!-- Name and title --> <text x="175" y="95" text-anchor="middle" font-family="Garamond" fill="#2f2f2f" filter="url(#emboss)"> <tspan font-size="20">B</tspan><tspan font-size="17">RENDEN </tspan> <tspan font-size="20">PATRICK </tspan> <tspan font-size="20">G</tspan><tspan font-size="17">ERELLE</tspan> </text> <text x="175" y="120" text-anchor="middle" font-family="Garamond" fill="#2f2f2f" filter="url(#emboss)"> <tspan font-size="16">F</tspan><tspan font-size="13">ULL </tspan> <tspan font-size="16">T</tspan><tspan font-size="13">IME </tspan> <tspan font-size="16">D</tspan><tspan font-size="13">RUG </tspan> <tspan font-size="16">A</tspan><tspan font-size="13">DDICT</tspan> </text> <!-- Address --> <text x="25" y="165" font-family="Garamond" fill="#2f2f2f" filter="url(#emboss)"> <tspan font-size="14">70 C</tspan><tspan font-size="11">OLONY </tspan> <tspan font-size="14">F</tspan><tspan font-size="11">ARM </tspan> <tspan font-size="14">R</tspan><tspan font-size="11">D, </tspan> <tspan font-size="14">C</tspan><tspan font-size="11">OQUITLAM, </tspan> <tspan font-size="14">BC V3C 5X9</tspan> </text> </svg>
0 notes