Created
January 15, 2018 20:58
-
-
Save N0taN3rd/85730f891c602c95cc9dba0a80633a71 to your computer and use it in GitHub Desktop.
SVG creation setup https://www.w3schools.com/graphics/tryit.asp?filename=trysvg_path
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <svg xmlns="http://www.w3.org/2000/svg" | |
| viewBox="0 0 16 16"> | |
| <!-- horizontal guides (remove later) --> | |
| <path d="M0 0 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 1 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 2 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 3 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 4 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 5 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 6 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 7 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 8 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 9 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 10 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 11 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 12 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 13 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 14 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 15 H16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M0 16 H16" stroke-width="0.1" stroke="gray" /> | |
| <!-- vertical guides (remove later) --> | |
| <path d="M0 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M1 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M2 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M3 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M4 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M5 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M6 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M7 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M8 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M9 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M10 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M11 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M12 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M13 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M14 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M15 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <path d="M16 0 V16" stroke-width="0.1" stroke="gray" /> | |
| <!-- actual work --> | |
| <path d="M0 3 | |
| a 3 3, 0, 0, 1, 3 -3 | |
| h 2 | |
| l 3 3 | |
| h -3 | |
| a 2 2, 0, 0, 0, -2 2 | |
| v 6 | |
| a 2 2, 0, 0, 0, 2 2 | |
| h 1 | |
| l 3 3 | |
| h -6 | |
| a 3 3, 0, 0, 1, -3 -3 | |
| Z" | |
| fill="#1B4869" /> | |
| <path d="M16 16 | |
| h -4 | |
| l -9 -9 | |
| h 6 | |
| a 2 2, 0, 0, 0, 2 -2 | |
| a 2 2, 0, 0, 0, -2 -2 | |
| h -1 | |
| l -3 -3 | |
| h 6 | |
| a 3 3, 0, 0, 1, 3 3 | |
| v 4 | |
| a 3 3, 0, 0, 1, -3 3 | |
| h -1 | |
| Z" | |
| fill="#F24738" /> | |
| </svg> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment