reactor-control-room/first-weld.html

183 lines
5.6 KiB
HTML
Raw Normal View History

2026-07-18 17:19:28 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, every-scale=1.0">
<title>My First Weld — Brandy Meade</title>
<style>
:root {
--neon-pink: #ff00ff;
--neon-blue: #00ffff;
--neon-green: #00ff00;
--dark-bg: #1a1a1a;
--text-color: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Courier New', monospace;
background-color: var(--dark-bg);
color: var(--text-color);
line-height: 1.6;
padding: 2rem;
}
header {
text-align: center;
margin-bottom: 3rem;
border-bottom: 3px dashed var(--neon-pink);
padding-bottom: 2rem;
}
h1 {
font-size: 2.5rem;
color: var(--neon-blue);
text-shadow: 2px 2px 4px rgba(0, 255, 255, 0.5);
margin-bottom: 1rem;
}
.content {
max-width: 800px;
margin: 2rem auto;
font-size: 1.1rem;
line-height: 1.8;
}
.content h2 {
color: var(--neon-green);
margin-top: 2 rem;
margin-bottom: 1 rem;
}
.content p {
margin-bottom: 1.5 rem;
}
.quote {
background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
padding: 1.5 rem;
border-radius: 10px;
text-align: center;
font-size: 1.2rem;
font-style: italic;
color: var(--dark-bg);
margin: 2 rem 0;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2 rem;
margin: 3 rem 0;
}
.gallery-item {
border: 2 px solid var(--neon-pink);
padding: 1 rem;
background: rgba(255, 0, 255, 0.1);
border-radius: 10px;
}
.gallery-item img {
width: 100%;
height: auto;
border-radius: 5px;
margin-bottom: 1 rem;
}
.gallery-item h3 {
color: var(--neon-blue);
margin-bottom: 0.5 rem;
}
.gallery-item p {
font-size: 0.9 rem;
color: #cccccc;
}
.back-button {
display: block;
width: 200px;
margin: 3 rem auto;
padding: 1 rem 2 rem;
background: var(--neon-green);
color: var(--dark-bg);
text-align: center;
text-decoration: none;
font-size: 1.2 rem;
border-radius: 10px;
transition: transform 0.3s ease;
}
.back-button:hover {
transform: scale(1.05);
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<h1>My First Weld</h1>
<p style="font-size: 1.2 rem; color: var(--neon-green);">The smell of ozone, the sparks flying like fireflies</p>
</header>
<div class="content">
<h2>The First Spark</h2>
<p>
I remember the first time I picked up a welding torch. It was in my high school shop class, and the smell of ozone hit me right in the face. It was like nothing I'd ever smelled before — sharp, electric, alive.
</p>
<p>
The teacher showed me how to hold the torch, how to strike an arc, how to let the metal melt and flow like liquid silver. But when I tried it myself? The first weld was a disaster. The metal warped, the joint was weak, and I burned my thumb.
</p>
<div class="quote">
"Every joint, every circuit, is a lesson."
</div>
<h2>The Lessons</h2>
<p>
That first weld taught me more than any textbook could. I learned that you have to be patient, that you have to feel the metal, that every spark tells a story.
</p>
<p>
Now, when I'm at the food plant, calibrating instruments and scripting Python for data collection, I think about that first weld. Every machine is a weld, every line of code is a spark. And every mistake? That's just another chance to learn.
</p>
<h2>Gallery of Sparks</h2>
<div class="gallery">
<div class="gallery-item">
<img src="https://images.pexels.com/photos/12944718/pexels-photo-12944718.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Rusty industrial tank emitting smoke">
<h3>The Smoke</h3>
<p>Every weld leaves a cloud of smoke — but it's not just smoke, it's the smell of creation.</p>
</div>
<div class="gallery-item">
<img src="https://pixabay.com/get/gdb99068852a4e198af62b7edf8bc4da50d55ad1f7b1d34ac8a148c9ad3b96b12c4fe91864cd247a871ee5bec4b636552eae422e2bdcaf37f216a0cd1115db28d_1280.png" alt="Factory industrial smoke">
<h3>The Factory</h3>
<p>Every factory is a place of sparks and smoke — and every worker is an artist.</p>
</div>
<div class="gallery-item">
<img src="https://pixabay.com/get/g4697b75404a8e640aeb3363f677573fa05c351c5b64b38d966abbb010d7f3de7fe80d850cedfab5fb240f76186b2cd65275c0ae39b2b1b5398b6329e969b22b9_1280.jpg" alt="AI generated electrocoating">
<h3>The Future</h3>
<p>Even AI is learning to weld — and every mistake is a step forward.</p>
</div>
</div>
<h2>Join the Spark</h2>
<p>
This isn't just my story — it's yours too. Whether you're a welder, a coder, a painter, or a baker, you're making sparks every day. Every time you create something, you're part of the fire.
</p>
<p>
Come see my other pages — from the process design to the radish sculpture that went wrong but became art. Because in this corner of the galaxy, every spark is a masterpiece.
</p>
</div>
<a href="index.html" class="back-button">Back to the Home Page</a>
</body>
</html>