Shiny Exercise 0
Embedding an External HTML page
- To embed an external HTML page in your Quarto document, use an HTML execution chunk like this:
```{=html}
<div style="display: flex; justify-content: center; margin: 1em 0;">
<iframe
src="YOUR_SHINY_APP_URL"
width="800"
height="800"
frameborder="0"
style="border: none;"
></iframe>
</div>
```