<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Renoil Biofuels & Feedstocks</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #000;
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
height: 100vh;
}
header {
width: 100%;
text-align: center;
padding: 40px 20px 20px 20px;
}
header img {
max-width: 300px;
height: auto;
}
main {
max-width: 800px;
padding: 20px;
text-align: center;
}
h1 {
font-size: 2em;
margin-top: 0;
color: #ff6600;
}
p {
font-size: 1.2em;
line-height: 1.6;
}
footer {
margin-top: auto;
padding: 20px;
font-size: 0.9em;
color: #888;
}
</style>
</head>
<body>
<header>
<img src="/mnt/data/Renoil-01.jpg" alt="Renoil Logo" />
</header>
<main>
<h1>Welcome to Renoil</h1>
<p>
At Renoil, we specialize in sustainable biofuels and feedstocks. Our mission is to create clean, efficient, and scalable energy solutions from renewable sources such as used cooking oil (UCO).
</p>
<p>
Join us as we work toward a cleaner, greener future through innovation and responsible resource recovery.
</p>
</main>
<footer>
© 2025 Renoil Biofuels & Feedstocks. All rights reserved.
</footer>
</body>
</html>