SAE_RIOT_2024/index.html

26 lines
521 B
HTML
Raw Normal View History

2024-06-20 15:08:44 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Riot App</title>
<link href="style.css" rel="stylesheet">
<link href="https://cdn.tailwindcss.com" rel="stylesheet">
</head>
<body>
<onzer></onzer>
<script src="https://unpkg.com/animore/animore.js"></script>
<script src="https://unpkg.com/riot@9/riot+compiler.min.js"></script>
<script type="riot" src="./onzer.riot"></script>
<script type="text/javascript">
riot.compile().then(() => {
riot.mount('onzer')
})
</script>
</body>
</html>