Skip to content

Instantly share code, notes, and snippets.

@youngbh
Created July 21, 2016 19:06
Show Gist options
  • Save youngbh/30a42c978fe21d00799d7352960866af to your computer and use it in GitHub Desktop.
Save youngbh/30a42c978fe21d00799d7352960866af to your computer and use it in GitHub Desktop.
Bahamas flag
license: gpl-3.0
<!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