trinket-proxy/index.html

56 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2025-07-10 16:59:51 -07:00
<!DOCTYPE html>
<html lang="en">
<!-- This is a simple HTML page that embeds a Python trinket using an iframe for testing -->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Byte Camp</title>
<style>
/* Base dark mode styling */
body {
background-color: #121212;
color: #f0f0f0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #1e1e1e;
padding: 1rem 2rem;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
header h1 {
margin: 0;
font-size: 2rem;
color: #00d8ff;
}
main {
padding: 2rem;
}
iframe {
border: none;
width: 100%;
height: 600px;
border-radius: 8px;
background-color: #1e1e1e;
}
</style>
</head>
<body>
<header>
<h1>Byte Camp</h1>
</header>
<main>
2025-08-25 14:13:27 -07:00
<iframe id="python" src="https://trinket-proxy.fly.dev/embed/python/7135a3898dcd?toggleCode=false" title="Python Trinket Player" width="100%" height="100%" marginwidth="0" marginheight="0" allowfullscreen=""></iframe>
2025-07-10 16:59:51 -07:00
</main>
</body>
</html>