<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phone Review 360</title>
<style>
/* General Styling */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background: #f9f9f9;
color: #333;
transition: background 0.3s, color 0.3s;
}
header {
background: #222;
color: #fff;
padding: 15px 20px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 28px;
}
nav {
background: #444;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.container {
max-width: 1000px;
margin: auto;
padding: 20px;
}
.card {
background: #fff;
margin-bottom: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
overflow: hidden;
transition: transform 0.3s;
}
.card:hover {
transform: translateY(-5px);
}
.card img {
width: 100%;
height: auto;
}
.card-content {
padding: 15px;
}
.card-content h2 {
margin-top: 0;
font-size: 22px;
}
.dark-mode {
background: #121212;
color: #f1f1f1;
}
footer {
background: #222;
color: #fff;
text-align: center;
padding: 15px;
margin-top: 20px;
}
button {
background: #222;
color: #fff;
border: none;
padding: 8px 15px;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background: #555;
}
</style>
</head>
<body>
<header>
<h1>📱 Phone Review 360</h1>
<p>Your daily dose of smartphone reviews</p>
</header>
<nav>
<a href="#">Home</a>
<a href="#">Samsung</a>
<a href="#">iPhone</a>
<a href="#">Tecno</a>
<a href="#">About</a>
</nav>
<div class="container">
<button onclick="toggleDarkMode()">🌙 Toggle Dark Mode</button>
<div class="card">
<img src="https://via.placeholder.com/1000x400" alt="Samsung S25 Ultra">
<div class="card-content">
<h2>Samsung Galaxy S25 Ultra Review</h2>
<p>The Samsung Galaxy S25 Ultra sets a new benchmark in the smartphone world with its cutting-edge Snapdragon processor, massive battery life, and advanced camera setup...</p>
<a href="#">Read More</a>
</div>
</div>
<div class="card">
<img src="https://via.placeholder.com/1000x400" alt="iPhone 17">
<div class="card-content">
<h2>iPhone 17 – The Future of Apple</h2>
<p>The iPhone 17 is here, redefining design and performance. With its futuristic A19 Bionic chip and upgraded camera system...</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<footer>
<p>© 2025 Phone Review 360 | All Rights Reserved</p>
</footer>
<script>
function toggleDarkMode() {
document.body.classList.toggle("dark-mode");
}
</script>
</body>
</html>
Comments
Post a Comment