Skip to content

Instantly share code, notes, and snippets.

@huacnlee
Created January 19, 2021 06:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huacnlee/ae71f9cbf74faf283f94b658db538824 to your computer and use it in GitHub Desktop.
Save huacnlee/ae71f9cbf74faf283f94b658db538824 to your computer and use it in GitHub Desktop.
SVG Logo Template
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg style="border-radius: 0;" width="324" height="120" viewBox="0 0 324 120" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g>
<defs>
<linearGradient id="avatar" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff6a00"/>
<stop offset="100%" stop-color="#ff6a00"/>
</linearGradient>
</defs>
<rect fill="url(#avatar)" x="0" y="0" width="324" height="120"/>
<text x="50%" y="50%" alignment-baseline="central" dominant-baseline="central" text-anchor="middle" fill="#fff" font-weight="bold" font-family="sans-serif" font-size="40">BABA.US</text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment