Skip to content

Instantly share code, notes, and snippets.

@campanalbero
Created September 25, 2013 18:03
Show Gist options
  • Save campanalbero/6703524 to your computer and use it in GitHub Desktop.
Save campanalbero/6703524 to your computer and use it in GitHub Desktop.
SVG による簡易日本地図
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Japan</title>
</head>
<body>
<svg>
<rect x="320" y="0" fill="#ffff00" stroke="#ff0000" width="150" height="150"/><!--北海道-->
<rect x="0" y="320" fill="#ffff00" stroke="#ff0000" width="100" height="200"/><!--九州-->
<rect x="120" y="440" fill="#ffff00" stroke="#ff0000" width="150" height="50"/><!--四国-->
<polygon points="320,170 420,170 420,420 120,420 120,320 320,320" fill="#ffff00" stroke="#ff0000" /><!--本州-->
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment