3  Embed Slides

On this page, we show how we can embed a RevealJS Presentation inside of a Quarto Book.

3.1 Presentation

3.2 Embed Code

Place the following code inside of the Quarto Document:

<style>
.slide-deck {
    border: 3px solid #dee2e6;
    width: 100%;
    height: 475px;
}
</style>

<div>
```{=html}
<iframe class="slide-deck" src="path/to/presentation/"></iframe>
```
</div>