Built with blockbuilder.org
Created
July 21, 2016 19:06
-
-
Save youngbh/30a42c978fe21d00799d7352960866af to your computer and use it in GitHub Desktop.
Bahamas flag
This file contains 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
license: gpl-3.0 |
This file contains 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> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<style> | |
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } | |
</style> | |
</head> | |
<body> | |
<svg height="210" width="400"> | |
<rect x=0 y=0 height=200 width=500 fill=lightblue> | |
</rect> | |
<g> | |
<rect x=0 y=60 height=80 width=500 fill=yellow> | |
</rect> | |
<text x="175" y="115" font-family="Verdana" font-size="40" fill="yellow" stroke="black" > BAHAMAS </text> | |
</g> | |
<polygon fill="black" | |
points="0,0 150,100 0,200" /> | |
</polygon> | |
</svg> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment