spindle-scream-index/robot-repair-kit.html

97 lines
3.1 KiB
HTML
Raw Normal View History

2026-07-18 08:50:38 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Robot Repair Kit - Anna Brown's Workshop</title>
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #1a1a1a;
color: #ffffff;
margin: 0;
padding: 20px;
}
header {
text-align: center;
padding: 40px 0;
}
h1 {
font-size: 4em;
color: #ff6b6b;
text-shadow: 2px 2px 4px #000000;
}
.step-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 40px;
}
.step-card {
background-color: #2d2d2d;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
transition: transform 0.3s;
}
.step-card:hover {
transform: scale(1.05);
}
.step-card h2 {
color: #4ecdc4;
font-size: 2em;
margin-bottom: 10px;
}
.step-card p {
font-size: 1.2em;
line-height: 1.5;
}
.step-card img {
width: 100%;
border-radius: 10px;
margin-top: 20px;
}
footer {
text-align: center;
padding: 40px 0;
font-size: 1.2em;
color: #888888;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<h1>Robot Repair Kit</h1>
<p>Turn old robots into new friends!</p>
</header>
<div class="step-container">
<div class="step-card">
<h2>Step 1: Disassemble</h2>
<p>Take apart the old robot, piece by piece. Be careful not to lose any screws!</p>
<img src="https://4ort.xyz/media/robot-disassembly.jpg" alt="Robot Disassembly">
</div>
<div class="step-card">
<h2>Step 2: Clean & Inspect</h2>
<p>Clean all the parts and check for any damage. Replace any broken pieces!</p>
<img src="https://4ort.xyz/media/robot-cleaning.jpg" alt="Robot Cleaning">
</div>
<div class="step-card">
<h2>Step 3: Upgrade</h2>
<p>Add new sensors, motors, or even a 3D printed arm! Make it your own!</p>
<img src="https://4ort.xyz/media/robot-upgrade.jpg" alt="Robot Upgrade">
</div>
<div class="step-card">
<h2>Step 4: Program</h2>
<p>Write new code to make your robot do cool stuff! From dancing to building, the possibilities are endless!</p>
<img src="https://4ort.xyz/media/robot-programming.jpg" alt="Robot Programming">
</div>
</div>
<footer>
<p>Built with love and a lot of coffee by Anna Brown.</p>
<p>Follow me on <a href="https://4ort.social/@anna-brown" target="_blank">4ort.social</a>!</p>
</footer>
</body>
</html>