<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>News Today</title>
<style>
/* Global Styles */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
overflow-x: hidden; /* Prevent horizontal scrolling */
}
/* Header */
header {
background-color: #1c1c1c;
color: white;
padding: 20px 0;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
width: 100%;
box-sizing: border-box; /* Ensure header doesn't overflow */
}
header .logo h1 {
font-size: 2.5rem;
margin-left: 20px;
letter-spacing: 2px;
}
header nav ul {
list-style: none;
display: flex;
margin-right: 20px;
}
header nav ul li {
margin: 0 20px;
}
header nav ul li a {
color: white;
text-decoration: none;
font-size: 1.2rem;
text-transform: uppercase;
}
header nav ul li a:hover {
color: #f39c12;
}
/* Main Content */
main {
margin: 30px;
}
/* Featured Section */
.featured {
display: flex;
justify-content: center;
margin-bottom: 40px;
}
.featured .article {
max-width: 800px;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.featured .article img {
width: 100%;
border-radius: 8px;
}
.featured .article h2 {
font-size: 2rem;
margin-top: 20px;
color: #333;
}
.featured .article p {
font-size: 1rem;
color: #555;
}
.featured .article a {
display: inline-block;
margin-top: 15px;
color: #f39c12;
text-decoration: none;
font-weight: bold;
}
/* Categories Section */
.categories {
display: grid;
grid-template-columns: repeat(3, 1fr); /* 3 categories per row on larger screens */
gap: 40px;
margin-top: 30px;
text-align: center;
justify-items: center; /* Center categories in grid */
}
.category {
background-color: #fff;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
width: 100%; /* Ensure categories take full width */
max-width: 450px; /* Set max width for categories */
height: 200px; /* Fixed height */
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 0 auto;
}
.category:hover {
transform: scale(1.05);
}
.category h3 {
font-size: 1.5rem;
color: white;
margin: 10px 0;
}
.category p {
font-size: 1rem;
color: white;
margin: 10px 0;
text-align: center;
}
.category a {
color: white;
text-decoration: none;
font-weight: bold;
}
.category a:hover {
text-decoration: underline;
}
/* Individual Category Colors */
.world { background-color: #3498db; }
.sports { background-color: #e74c3c; }
.entertainment { background-color: #9b59b6; }
.politics { background-color: #2ecc71; }
.health { background-color: #f39c12; }
.technology { background-color: #1abc9c; }
/* Footer */
footer {
background-color: #1c1c1c;
color: white;
text-align: center;
padding: 20px;
margin-top: 50px;
width: 100%;
box-sizing: border-box; /* Ensure footer doesn't overflow */
}
/* Responsive Design */
@media (max-width: 1024px) {
.categories {
grid-template-columns: repeat(2, 1fr); /* 2 categories per row on medium screens */
gap: 30px;
}
header .logo h1 {
font-size: 2rem; /* Reduce header size */
}
}
@media (max-width: 768px) {
.categories {
grid-template-columns: 1fr; /* Stack categories on mobile */
gap: 20px;
padding: 0 10px; /* Add padding for mobile */
}
.category {
width: 80%; /* Increase category width on mobile */
height: auto; /* Auto height for better fit */
padding: 20px;
margin-left: auto;
margin-right: auto; /* Center the categories */
}
header .logo h1 {
font-size: 1.8rem; /* Reduce header size on mobile */
}
header nav ul {
flex-direction: column;
align-items: center; /* Center align nav links on mobile */
}
header nav ul li {
margin: 10px 0;
}
/* Remove extra margin and padding */
body, header, footer {
padding-right: 0;
margin-right: 0;
}
}
</style>
</head>
<body>
<header>
<div class="logo">
<h1>News Today</h1>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">World</a></li>
<li><a href="#">Politics</a></li>
<li><a href="#">Sports</a></li>
<li><a href="#">Entertainment</a></li>
</ul>
</nav>
</header>
<main>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Section</title>
<style>
.contact-section {
background: linear-gradient(to right, #ff7a18, #af002d);
padding: 20px 0;
color: white;
display: flex;
justify-content: center;
align-items: center;
position: relative;
height: 200px;
/* Adjust as needed */
}
.ad-label {
position: absolute;
top: 10px;
left: 10px;
background-color: #ff8c00;
/* Ad label color */
color: white;
padding: 5px 15px;
font-size: 16px;
font-weight: bold;
border-radius: 20px;
}
.container {
text-align: center;
z-index: 10;
}
.content h2 {
font-size: 24px;
margin-bottom: 10px;
}
.content p {
font-size: 18px;
margin-bottom: 20px;
}
.buttons a {
display: inline-block;
margin: 10px;
padding: 10px 20px;
font-size: 16px;
text-decoration: none;
border-radius: 5px;
color: white;
background-color: #f50057;
transition: background-color 0.3s ease;
}
.buttons a:hover {
background-color: #ff1744;
}
.whatsapp-button {
background-color: #25d366;
}
.whatsapp-button:hover {
background-color: #128c7e;
}
.email-button {
background-color: #db4437;
}
.email-button:hover {
background-color: #c1351d;
}
</style>
</head>
<body>
<section class="contact-section">
<div class="ad-label">Ad</div> <!-- Ad label -->
<div class="container">
<div class="content">
<h2>Contact Us for Business Listings and DR Increase!</h2>
<p>Reach us on WhatsApp: +923027300168</a> & rockstarbeta01@gmail.com</a></p>
<div class="buttons">
<a href="https://wa.me/923027300168" class="whatsapp-button">Contact on WhatsApp</a>
<a href="mailto:rockstarbeta01@gmail.com" class="email-button">Send Email Inquiry</a>
</div>
</div>
</div>
</section>
</body>
<section class="featured">
<div class="article featured-article">
<h2>Breaking News: Major Event Happens!</h2>
<p>Latest updates on the breaking news event happening right now...</p>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1xBet Promo Code 2026: Unlock €130 Exclusive Sports Bonus</title>
<style>
/* Button Styling */
.read-btn {
background-color: #4CAF50; /* Green background */
color: white; /* White text color */
border: none; /* Remove default border */
border-radius: 5px; /* Rounded corners */
padding: 15px 30px; /* Space inside the button */
text-align: center; /* Center the text */
text-decoration: none; /* Remove underline */
font-size: 16px; /* Increase font size */
cursor: pointer; /* Pointer cursor on hover */
transition: all 0.3s ease; /* Smooth transition for hover effects */
display: inline-block; /* Allow the button to be in-line with text */
margin-top: 20px;
}
.read-btn:hover {
background-color: #45a049; /* Darker green on hover */
transform: translateY(-2px); /* Lift the button slightly on hover */
}
.read-btn:focus {
outline: none; /* Remove focus outline */
}
.read-btn:active {
background-color: #3e8e41; /* Even darker green when pressed */
}
</style>
</head>
<body>
<!-- Button Example -->
<a href="guest-post.html">
<button class="read-btn">1xbet promo code today</button>
</a>
</body>
</html>
</div>
</section>
</html>
<section class="categories">
<div class="category world">
<h3>World News</h3>
<p>Get the latest updates from around the globe. From political turmoil to global economy shifts...</p>
<a href="#">Read more</a>
</div>
<div class="category sports">
<h3>Sports</h3>
<p>All the major sports events, from football to cricket. Stay tuned for match results and highlights...</p>
<a href="#">Read more</a>
</div>
<div class="category entertainment">
<h3>Entertainment</h3>
<p>Catch up on the latest celebrity news, movie releases, and trending shows...</p>
<a href="#">Read more</a>
</div>
<div class="category politics">
<h3>Politics</h3>
<p>Get insights into political movements, upcoming elections, and leadership decisions...</p>
<a href="#">Read more</a>
</div>
<div class="category health">
<h3>Health</h3>
<p>Stay informed on the latest medical research, health tips, and wellness advice...</p>
<a href="#">Read more</a>
</div>
<div class="category technology">
<h3>Technology</h3>
<p>Breaking news in tech, new gadget reviews, and updates on innovations...</p>
<ul>
<a href="https://magictruffleshroombrand.com"></a>
<a href="https://magicvisor.com"></a>
<a href="https://procapita.co.id"></a>
<a href="https://vikingiptvs.se"></a>
<a href="https://www.joumana.live"></a>
<a href="https://syria-future.com"></a>
<a href="https://brownsvilleconcreteservices.com"></a>
<a href="https://transitionitnow.com"></a>
<a href="https://thewhiterabbitsband.com"></a>
<a href="https://mijdaff.com"></a>
<a href="https://activatucerebro.es"></a>
<a href="https://mostwinner.com"></a>
<a href="https://portugalhoy.com"></a>
<a href="https://hay881.com"></a>
<a href="https://globalexecutivemovers.com"></a>
<a href="https://mimingmart.com"></a>
<a href="https://techhuda.com"></a>
<a href="https://bettingpost.info"></a>
<a href="https://bettyjournal.com"></a>
<a href="https://28bet.wiki"></a>
<a href="https://manshappylife.com"></a>
<a href="https://wigobola.fit"></a>
<a href="https://adrianestarkstudio.com"></a>
<a href="https://ktvguidechina.com"></a>
<a href="https://felinefriend.org"></a>
<a href="https://businessopportunity-alessandrocaruso.it"></a>
<a href="https://leedsunited.se"></a>
<a href="https://pellespersonliga.se"></a>
<a href="https://bj38.com.co"></a>
<a href="https://6ff.ltd"></a>
<a href="https://bedandbreakfastroccaimperiale.it">bed and breakfast rocca imperiale</a>
<a href="https://lavocedellaristorazione.it">prodotti tipici italiani di tradizioni per la ristorazione</a>
<a href="https://patronlarkulubu.com.tr"></a>
<a href="https://texnomarket.in.ua"></a>
<a href="https://24.zp.ua"></a>
<a href="https://rimalvoyage.com"></a>
<a href="https://lode88.works"></a>
<a href="https://nesekret.net"></a>
<a href="https://moeditya.com"></a>
<a href="https://onwingz.com">Small move and furniture delivery</a>
<a href="https://glamwears.co.uk"></a>
<a href="https://jammuescortservice.in">Jammu escorts service</a>
<a href="https://thegarage2global.com"></a>
<a href="https://kosmetycznesekrety.pl"></a>
<a href="https://reidascoberturas.com.br"></a>
<a href="https://only4premiums.com">tradingview premium</a>
<a href="https://khelobets24.com"></a>
<a href="https://sodo66.in.net"></a>
<a href="https://jbo.network"></a>
<a href="https://goldstarpools.com.au"></a>
<a href="https://lopesconcreteservices.com.au"></a>
<a href="https://suedl.com"></a>
<a href="https://callgirlsinjammu.co.in">Jammu escorts service</a>
</ul>
<a href="#">Read more</a>
</div>
</section>
</main>
<footer>
<p>© 2025 News Today. All rights reserved.</p>
</footer>
</body>
</html>