Embedding HTML into HTML
- Embedding static visualizations from packages can be done with image outputs (.png, .pdf) or HTML outputs.
- We can embed just about any HTML snippet with
<iframe>
or<embed>
.
<iframe seamless src="../img/leaflet_frag.html" width=520px height=520px ></iframe>
<embed seamless src="../img/leaflet_frag.html" width=520px height=520px ></embed>