Chris Pollett
July 11, 2024
<!doctype html>
<html lang="en">
<head>
<title>Slides using FRISE</title>
<meta charset="UTF-8" >
<link rel="stylesheet" href="frise/css/game.css" >
<!--Link your own/other stylesheets here-->
</head>
<body onload="initSlides();">
<x-slides>
<x-slide>
<h1>First Slide<h1>
<ul>
<li>Point 1</li>
<li>Point 2</li>
</ul>
</x-slide>
<x-slide>
<h1>Second Slide<h1>
<ol>
<li>Ordered Point 1</li>
<li>Ordered Point 2</li>
</ol>
</x-slide>
</x-slides>
<script src="frise/js/game.js" ></script>
</body>
</html>