Skip to content

Commit

Permalink
Merge pull request #32 from kaunta/i27
Browse files Browse the repository at this point in the history
add basic map of territory
  • Loading branch information
kaunta committed Feb 8, 2020
2 parents 484ed43 + 3ec40e1 commit 3b7c9e1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pacific-factbook/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@

print("<h1>", country_name, "</h1>")
print("<figure>", flag.generate(), "</figure>")
print(
"""<figure>
<figcaption>map</figcaption>
<svg width="200" height="200" style="border: 1px solid black">
<rect width="100%" height="100%" fill="#0ca4ff"/>
<circle cx="100" cy="100" r="40" stroke="#E8D9C5" stroke-width="4" fill="#E8D9C5" />
</svg>
</figure>"""
)

print("<h1>Geography</h1>")
print("<h2>Location</h2>")
Expand Down

0 comments on commit 3b7c9e1

Please sign in to comment.