trinket-proxy/index.html

58 lines
1.2 KiB
HTML
Raw 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>
<iframe src="https://trinket-proxy.fly.dev/embed/python/4d53507eddfe" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>
</main>
</body>
</html>