<!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>Technology News</title>
<style>
/* Global Styles */
html,
body {
margin: 0;
padding: 0;
width: 100%;
overflow-x: hidden;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
}
/* Navigation */
nav {
background-color: #1c1c1c;
color: white;
padding: 5px 0;
/* Reduced padding to remove extra space */
width: 100%;
text-align: center;
position: fixed;
top: 0;
z-index: 100;
left: 0;
}
nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
justify-content: center;
}
nav ul li {
margin: 0 15px;
/* Space between items */
white-space: nowrap;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 1rem;
text-transform: uppercase;
}
nav ul li a:hover {
color: #f39c12;
}
/* Hero Section */
.hero {
background-color: #3498db;
color: white;
padding: 40px 20px;
text-align: center;
width: 100%;
margin-top: 60px;
/* To prevent content from being hidden behind fixed nav */
}
.hero h1 {
font-size: 2rem;
margin-bottom: 20px;
word-wrap: break-word;
text-align: center;
/* Ensure proper centering */
margin: 0 auto;
}
.hero p {
font-size: 1rem;
margin-bottom: 15px;
word-wrap: break-word;
}
.hero button {
background-color: #f39c12;
border: none;
padding: 10px 30px;
color: white;
font-size: 1rem;
cursor: pointer;
}
/* Categories Section */
.categories {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
margin: 20px 10%;
text-align: center;
}
.category {
background-color: #3498db;
color: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
.category h3 {
font-size: 1.6rem;
}
/* Featured Articles Section */
.featured-articles {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
margin: 20px 10%;
}
.featured-articles .article {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.featured-articles .article img {
width: 100%;
border-radius: 8px;
}
.featured-articles .article h3 {
font-size: 1.6rem;
margin-top: 20px;
}
.featured-articles .article p {
font-size: 1rem;
color: #555;
}
.featured-articles .article a {
display: inline-block;
margin-top: 15px;
color: #f39c12;
text-decoration: none;
font-weight: bold;
}
/* Footer */
footer {
background-color: #1c1c1c;
color: white;
text-align: center;
padding: 20px;
width: 100%;
}
/* Responsive Design for Mobile */
@media (max-width: 768px) {
/* Mobile Navigation (scrolling effect) */
nav ul {
display: flex;
flex-wrap: nowrap;
/* Prevent wrapping of items */
justify-content: flex-start;
overflow-x: auto;
/* Allow horizontal scroll */
animation: scrolling 20s linear infinite;
/* Add scrolling animation */
}
nav ul li {
margin: 0 15px;
white-space: nowrap;
}
/* Scrolling Effect */
@keyframes scrolling {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
/* Categories Section (adjust layout for mobile) */
.categories {
grid-template-columns: 1fr;
margin: 0;
}
.category {
padding: 20px;
font-size: 1rem;
}
/* Hero Section - Mobile Fix for Overflow */
.hero {
padding: 40px 20px;
margin-top: 0;
/* Remove top margin */
}
.hero h1,
.hero p {
word-wrap: break-word;
font-size: 1.5rem;
/* Adjust size for better mobile fit */
}
/* Featured Articles Section */
.featured-articles {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<!-- Navigation (Header Section) -->
<nav>
<ul class="menu">
<li><a href="#">Home</a></li>
<li><a href="#">Technology</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Reviews</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<!-- Hero Section -->
<section class="hero">
<h1>Welcome to Technology News</h1>
<p>Stay updated with the latest trends, innovations, and insights in the tech world.</p>
<button>Explore More</button>
</section>
<!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>
<!-- Categories Section -->
<section class="categories">
<div class="category">
<h3>Artificial Intelligence</h3>
</div>
<div class="category">
<h3>Cybersecurity</h3>
</div>
<div class="category">
<h3>Blockchain</h3>
</div>
<div class="category">
<h3>Cloud Computing</h3>
</div>
<div class="category">
<h3>Augmented Reality</h3>
</div>
</section>
<!-- Featured Articles Section -->
<section class="featured-articles">
<div class="article">
<img src="https://via.placeholder.com/350x200" alt="Article Image">
<h3>AI in the Future of Technology</h3>
<p>Artificial Intelligence is poised to change the way we live and work. Explore how it will shape our
future.</p>
<a href="#">Read more</a>
</div>
<div class="article">
<img src="https://via.placeholder.com/350x200" alt="Article Image">
<h3>The Rise of Electric Cars</h3>
<p>Electric vehicles are becoming more mainstream. What’s next for the electric car industry?</p>
<a href="#">Read more</a>
</div>
<div class="article">
<img src="https://via.placeholder.com/350x200" alt="Article Image">
<h3>5G Technology: What’s All the Buzz?</h3>
<p>5G is transforming mobile communication. Let’s take a closer look at what it means for us.</p>
<ul>
<a href="https://fashionfusionpost.com"></a>
<a href="https://kinelu.co.uk"></a>
<a href="https://gempislot88.website"></a>
<a href="https://dognames.vip"></a>
<a href="https://ziyuansolar.com"></a>
<a href="https://zjhangyang.com"></a>
<a href="https://tools.siterocket.online"></a>
<a href="https://lichdaubongda.vn"></a>
<a href="https://lichbongdahomnay.vn"></a>
<a href="https://nhandinhplus.vn"></a>
<a href="https://benlesanco.vn"></a>
<a href="https://bongghidau.vn"></a>
<a href="https://ktvguidechina.com"></a>
<a href="https://eventlong.com"></a>
<a href="https://gempislot.vip"></a>
<a href="https://gempizlot.store"></a>
<a href="https://spin88.casa"></a>
<a href="https://gempislot88.website"></a>
<a href="https://mpo328.link"></a>
<a href="https://egamingtoday.nl"></a>
<a href="https://gamingcontrolboard.nl"></a>
<a href="https://nationalgambling.nl"></a>
<a href="https://ninjahandscleaning.com.au"></a>
<a href="https://footballdatabase.ca"></a>
<a href="https://wikifootball.ca"></a>
<a href="https://soccerclubsranking.ca"></a>
<a href="https://worldfootballmatch.ca"></a>
<a href="https://eflchampionship.ca"></a>
<a href="https://championsleaguefc.ca"></a>
<a href="https://footballcompetitions.ca"></a>
<a href="https://wolrdchampionship.ca"></a>
<a href="https://livescorelucky.ca"></a>
<a href="https://watchlivescorenew.ca"></a>
<a href="https://bettercaremarket.com.au"></a>
<a href="https://techtube.org"></a>
<a href="https://warcraftviet.vn"></a>
<a href="https://nhanvatdota.vn"></a>
<a href="https://sieukinhdien.vn"></a>
<a href="https://tieusucauthu.vn"></a>
<a href="https://tattantatbongda.vn"></a>
<a href="https://sieusaobongda.vn"></a>
<a href="https://huyenthoaibongda.vn"></a>
<a href="https://danhsachgiaidau.vn"></a>
<a href="https://sieucupbongda.vn"></a>
<a href="https://nhanvathoathinh.vn"></a>
</ul>
<a href="#">Read more</a>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2025 Technology News. All rights reserved.</p>
</footer>
</body>
</html>