Generated by ChatGPT 3

Prompt: "Generate an SVG logo of my initials, NB, with a background graphic."

by Nicholas Berlette

HTML

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
  <defs>
    <linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#0099ff"/>
      <stop offset="100%" stop-color="#4dd2ff"/>
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="100%" height="100%" fill="#ffffff"/>
  <rect x="0" y="0" width="200" height="200" fill="url(#grad)"/>
  <text x="50%" y="50%" text-anchor="middle" font-family="Arial" font-size="80" fill="#ffffff">NB</text>
</svg>