This website include my precise portfolio. Through this portfolio one can get my Bio and Contact info.
Site can be viewed at https://samarfatimajaffri.github.io/slideshow-portfolio/
Reveal.js Info
Create Horizontal slides by,
- Find the
<div>
elements havingclass="slides"
- Create a sepearate
<section>
for each slide inside that<div>
<div class="reveal">
<div class="slides">
<section>Slide1</section>
<section>Slide2</section>
</div>
</div>
...
Create vertical slides by,
- Find the
<div>
elements havingclass="slides"
- Create a
<section>
inside the<div>
for all the verticle slides - Create a
<section>
inside the<section>
for each vertical slide
<div class="reveal">
<div class="slides">
<section>
<section>Slide1</section>
<section>Slide2</section>
</section>
</div>
</div>
I have used vertical slides for this project.