TOMODACHI SHELL
Free Palestine !! - Free Gaza !!
Current File : /home/bluesky/public_html/mail/.well-known/../webmail.tar |
index.php 0000644 00000010401 15066105412 0006360 0 ustar 00 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AutoBuzz - Automotive News</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #0f1117;
color: #fff;
overflow-x: hidden;
}
header {
background: linear-gradient(45deg, #ff512f, #dd2476);
padding: 20px 40px;
text-align: center;
animation: slideDown 1s ease-out;
}
header h1 {
margin: 0;
font-size: 2.5em;
letter-spacing: 2px;
}
nav {
background: #1c1f26;
display: flex;
justify-content: center;
gap: 30px;
padding: 15px 0;
animation: fadeIn 1.5s ease-out;
}
nav a {
color: #fff;
text-decoration: none;
font-weight: bold;
position: relative;
}
nav a::after {
content: "";
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height: 2px;
background: #ff512f;
transition: 0.3s;
}
nav a:hover::after {
width: 100%;
}
.container {
padding: 40px 20px;
max-width: 1000px;
margin: auto;
animation: fadeInUp 1.5s ease;
}
.news-card {
background: #1c1f26;
border-radius: 10px;
margin-bottom: 30px;
padding: 25px;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
}
.news-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(255, 81, 47, 0.4);
}
.news-card h2 {
margin-top: 0;
color: #ff512f;
}
.news-card p {
color: #ccc;
line-height: 1.6;
}
footer {
text-align: center;
padding: 20px;
background: #14161c;
color: #888;
font-size: 0.9em;
margin-top: 40px;
}
@keyframes slideDown {
from {
transform: translateY(-100px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeInUp {
from {
transform: translateY(50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
</style>
</head>
<body>
<header>
<h1>AutoBuzz</h1>
<p>Your Daily Dose of Automotive News</p>
</header>
<nav>
<a href="#">Home</a>
<a href="#">News</a>
<a href="#">Reviews</a>
<a href="#">Concepts</a>
<a href="#">Contact</a>
</nav>
<div class="container" id="newsContainer">
<!-- News will be injected here -->
</div>
<footer>
© 2025 AutoBuzz. All rights reserved.
</footer>
<script>
const newsData = [
{
title: "Tesla Unveils Next-Gen Roadster",
content: "Tesla has officially unveiled the long-awaited next-generation Roadster. With a 0-60 time under 2 seconds, it aims to redefine electric performance."
},
{
title: "Toyota GR Corolla: Rally DNA on the Road",
content: "Toyota's GR Corolla packs a punch with a turbocharged 3-cylinder engine and AWD. A thrilling ride designed for enthusiasts."
},
{
title: "Hyundai’s N Vision 74: A Retro-Futuristic Masterpiece",
content: "Hyundai stuns the world with the hydrogen-powered N Vision 74, blending classic 70s styling with cutting-edge tech."
},
{
title: "Porsche Goes Electric with 718 Boxster EV",
content: "Porsche confirms the 718 Boxster will go all-electric by 2026, continuing their mission toward sustainable performance."
}
];
const container = document.getElementById('newsContainer');
newsData.forEach(article => {
const card = document.createElement('div');
card.className = 'news-card';
card.innerHTML = `<h2>${article.title}</h2><p>${article.content}</p>`;
container.appendChild(card);
});
</script>
</body>
</html>