<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raj Express - World News & Podcasts</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
color: #333;
line-height: 1.6;
}
header {
background-color: #1976d2;
color: white;
padding: 20px;
text-align: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo {
display: inline-block;
margin-bottom: 10px;
}
nav {
margin-top: 20px;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: 500;
}
nav a:hover {
text-decoration: underline;
}
main {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
}
section {
margin-bottom: 40px;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h2 {
color: #1976d2;
border-bottom: 2px solid #1976d2;
padding-bottom: 10px;
}
.news-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.news-item {
border: 1px solid #ddd;
padding: 15px;
border-radius: 5px;
}
.podcast-player {
margin-top: 10px;
}
footer {
background-color: #1976d2;
color: white;
text-align: center;
padding: 10px;
margin-top: 40px;
}
@media (max-width: 768px) {
nav a {
display: block;
margin: 10px 0;
}
}
</style>
</head>
<body>
<header>
<div class="logo">
<svg width="200" height="60" viewBox="0 0 200 60" xmlns="http://www.w3.org/2000/svg">
<circle cx="30" cy="30" r="20" fill="#ffffff" stroke="#1976d2" stroke-width="2"/>
<path d="M15 30 Q30 15 45 30 Q30 45 15 30" fill="#1976d2"/>
<text x="60" y="35" font-family="Arial, sans-serif" font-size="24" font-weight="bold" fill="#ffffff">Raj Express</text>
</svg>
</div>
<nav>
<a href="#world-news">World News</a>
<a href="#country-news">Country News</a>
<a href="#podcasts">Podcasts</a>
</nav>
</header>
<main>
<section id="world-news">
<h2>World News</h2>
<div class="news-grid">
<div class="news-item">
<h3>Global Climate Summit Updates</h3>
<p>Latest developments from international leaders on climate change initiatives. <a href="#">Read more</a></p>
</div>
<div class="news-item">
<h3>Tech Innovations in 2023</h3>
<p>Breakthroughs in AI and renewable energy shaping the future. <a href="#">Read more</a></p>
</div>
<div class="news-item">
<h3>Economic Trends Worldwide</h3>
<p>Analysis of global markets and recovery strategies. <a href="#">Read more</a></p>
</div>
</div>
</section>
<section id="country-news">
<h2>Country News</h2>
<div class="news-grid">
<div class="news-item">
<h3>USA: Election Insights</h3>
<p>Key updates on political developments. <a href="#">Read more</a></p>
</div>
<div class="news-item">
<h3>India: Economic Growth</h3>
<p>Reports on India's rising GDP and policies. <a href="#">Read more</a></p>
</div>
<div class="news-item">
<h3>UK: Brexit Aftermath</h3>
<p>Impacts on trade and society. <a href="#">Read more</a></p>
</div>
<div class="news-item">
<h3>China: Tech Advancements</h3>
<p>Innovations in AI and infrastructure. <a href="#">Read more</a></p>
</div>
<!-- Add more countries as needed -->
</div>
</section>
<section id="podcasts">
<h2>Podcasts</h2>
<div class="news-grid">
<div class="news-item">
<h3>Global Affairs Podcast</h3>
<p>Discussing world events with experts.</p>
<audio class="podcast-player" controls>
<source src="https://www.soundjay.com/misc/sounds/bell-ringing-05.wav" type="audio/wav"> <!-- Replace with real podcast URL -->
Your browser does not support the audio element.
</audio>
</div>
<div class="news-item">
<h3>Country Spotlight</h3>
<p>In-depth looks at regional news.</p>
<audio class="podcast-player" controls>
<source src="https://www.soundjay.com/misc/sounds/bell-ringing-05.wav" type="audio/wav"> <!-- Replace with real podcast URL -->
Your browser does not support the audio element.
</audio>
</div>
<div class="news-item">
<h3>Tech Talk</h3>
<p>Latest in technology and innovation.</p>
<audio class="podcast-player" controls>
<source src="https://www.soundjay.com/misc/sounds/bell-ringing-05.wav" type="audio/wav"> <!-- Replace with real podcast URL -->
Your browser does not support the audio element.
</audio>
</div>
</div>
</section>
</main>
<footer>
<p>© 2023 Raj Express. All rights reserved. | Contact: info@rajexpress.com</p>
</footer>
<script>
// Simple script to highlight active nav link (optional)
document.addEventListener('DOMContentLoaded', function() {
const sections = document.querySelectorAll('section');
const navLinks = document.querySelectorAll('nav a');
window.addEventListener('scroll', () => {
let current = '';
sections.forEach(section => {
const sectionTop = section.offsetTop;
if (pageYOffset >= sectionTop - 60) {
current = section.getAttribute('id');
}
});
navLinks.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href') === '#' + current) {
link.classList.add('active');
}
});
});
});
</script>
</body>
</html>