97 lines
3.1 KiB
HTML
97 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Custom CNC Jigs - 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>Custom CNC Jigs</h1>
|
|
<p>Build your own tools with a CNC machine!</p>
|
|
</header>
|
|
|
|
<div class="step-container">
|
|
<div class="step-card">
|
|
<h2>Step 1: Design</h2>
|
|
<p>Design your jig using CAD software. Make it precise and functional!</p>
|
|
<img src="https://4ort.xyz/media/cad-design.jpg" alt="CAD Design">
|
|
</div>
|
|
<div class="step-card">
|
|
<h2>Step 2: 3D Print</h2>
|
|
<p>Print the jig using a 3D printer. Use strong materials like PLA or ABS!</p>
|
|
<img src="https://4ort.xyz/media/3d-printing.jpg" alt="3D Printing">
|
|
</div>
|
|
<div class="step-card">
|
|
<h2>Step 3: CNC Mill</h2>
|
|
<p>Use a CNC machine to mill the jig out of wood or metal. Precision is key!</p>
|
|
<img src="https://4ort.xyz/media/cnc-milling.jpg" alt="CNC Milling">
|
|
</div>
|
|
<div class="step-card">
|
|
<h2>Step 4: Test & Refine</h2>
|
|
<p>Test your jig and make any necessary adjustments. Iterate until it's perfect!</p>
|
|
<img src="https://4ort.xyz/media/jig-testing.jpg" alt="Jig Testing">
|
|
</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> |