Files
Quizalarm/public/present.html
T

40 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quizalarm — Präsentation</title>
<script src="https://unpkg.com/react@18/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
}
.answer-a {
background: #ef4444;
}
.answer-b {
background: #3b82f6;
}
.answer-c {
background: #f59e0b;
}
.answer-d {
background: #22c55e;
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<div id="root"></div>
<script type="text/babel" src="/js/present.js"></script>
</body>
</html>