Refacere repo

This commit is contained in:
Ionel Andrei Cataon
2026-02-12 14:14:46 +02:00
parent 002d53928a
commit ad4a4cf8f6
1059 changed files with 193216 additions and 1 deletions

0
dockerUS/Dockerfile Normal file
View File

186
dockerUS/index.html Normal file
View File

@@ -0,0 +1,186 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>News - January 15, 2026</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}
header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 2rem 1rem;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
header p {
font-size: 1.1rem;
opacity: 0.9;
}
main {
max-width: 900px;
margin: 2rem auto;
padding: 0 1rem;
}
article {
background: white;
margin-bottom: 2rem;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
article:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
article h2 {
color: #667eea;
margin-bottom: 0.8rem;
font-size: 1.5rem;
}
article p {
color: #555;
margin-bottom: 1rem;
line-height: 1.8;
}
article a {
display: inline-block;
background-color: #667eea;
color: white;
padding: 0.6rem 1.2rem;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s ease;
font-weight: 500;
}
article a:hover {
background-color: #764ba2;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 2rem 1rem;
margin-top: 3rem;
}
footer p {
margin: 0.5rem 0;
}
@media (max-width: 768px) {
header h1 {
font-size: 1.8rem;
}
article {
padding: 1rem;
}
article h2 {
font-size: 1.2rem;
}
}
</style>
</head>
<body>
<header>
<h1>Daily News</h1>
<p>Top 10 Stories - January 15, 2026</p>
</header>
<main>
<article>
<h2>Global Climate Summit Reaches Historic Agreement</h2>
<p>World leaders have unanimously approved a groundbreaking climate accord aimed at accelerating carbon neutrality by 2040, marking a significant milestone in international environmental cooperation.</p>
<a href="#article1">Read More</a>
</article>
<article>
<h2>AI Breakthrough in Medical Diagnostics</h2>
<p>A new artificial intelligence system has demonstrated 99% accuracy in early cancer detection, promising to revolutionize medical screening processes worldwide.</p>
<a href="#article2">Read More</a>
</article>
<article>
<h2>Space Exploration: First Crewed Mars Base Operational</h2>
<p>The international space community celebrates as the first permanently inhabited base on Mars becomes fully operational with 12 astronauts from various nations.</p>
<a href="#article3">Read More</a>
</article>
<article>
<h2>Quantum Computing Milestone Achieved</h2>
<p>Researchers have successfully demonstrated the first practical quantum computer capable of solving real-world problems faster than classical supercomputers.</p>
<a href="#article4">Read More</a>
</article>
<article>
<h2>Global Economic Recovery Accelerates</h2>
<p>International markets show strong growth as emerging economies lead recovery efforts, with GDP growth exceeding predictions across all major regions.</p>
<a href="#article5">Read More</a>
</article>
<article>
<h2>Revolutionary Battery Technology Extends EV Range</h2>
<p>A new solid-state battery design allows electric vehicles to travel over 1000 miles on a single charge, accelerating global automotive transformation.</p>
<a href="#article6">Read More</a>
</article>
<article>
<h2>Breakthrough in Renewable Energy Storage</h2>
<p>Scientists announce a new method for storing renewable energy that is 40% more efficient than existing solutions, addressing the intermittency challenge.</p>
<a href="#article7">Read More</a>
</article>
<article>
<h2>Global Education Initiative Bridges Digital Divide</h2>
<p>A new international program provides free high-speed internet access to over 500 million students in underserved communities across 150 countries.</p>
<a href="#article8">Read More</a>
</article>
<article>
<h2>Major Disease Eradication Campaign Succeeds</h2>
<p>Public health officials announce the successful eradication of a major infectious disease, marking only the second disease to be completely eliminated in human history.</p>
<a href="#article9">Read More</a>
</article>
<article>
<h2>Sustainable Agriculture Transforms Food Production</h2>
<p>New agricultural techniques increase crop yields by 60% while reducing water consumption and environmental impact, offering solutions to global food security challenges.</p>
<a href="#article10">Read More</a>
</article>
</main>
<footer>
<p>&copy; 2026 Daily News. All rights reserved.</p>
<p>Contact us | Privacy Policy | Terms of Service</p>
</footer>
</body>
</html>