mirror of
https://github.com/tmdinosaurcenter/kiosk-guestbook.git
synced 2025-04-10 14:11:28 -06:00
28 lines
721 B
HTML
28 lines
721 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Museum Kiosk</title>
|
|
<link rel="stylesheet" href="public/style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Welcome to the Museum!</h1>
|
|
|
|
<!-- Embedded Google Form IFrame -->
|
|
<iframe
|
|
src="https://docs.google.com/forms/d/e/1FAIpQLSekn1-da42vLyOAMDwfswxNOtDsPFaiuYABBe9XqhhEssBndw/viewform?embedded=true"
|
|
width="100%" height="600" frameborder="0" style="border: none;">
|
|
Loading…
|
|
</iframe>
|
|
|
|
<!-- Ticker Container -->
|
|
<div id="ticker-container">
|
|
<div id="ticker-content">Loading submissions...</div>
|
|
</div>
|
|
|
|
<script src="public/script.js"></script>
|
|
</body>
|
|
|
|
</html> |