<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sample Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
background: #f4f4f4;
}
header {
background: #0a58ca;
color: #fff;
padding: 15px;
text-align: center;
}
nav {
background: #222;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
margin: 0 10px;
text-decoration: none;
}
.container {
padding: 20px;
}
.card {
background: #fff;
padding: 15px;
margin-bottom: 15px;
border-radius: 5px;
}
footer {
background: #222;
color: #fff;
text-align: center;
padding: 10px;
}
</style>
</head>
<body>
<header>
<h1>My Sample Website</h1>
<p>Welcome to my website</p>
</header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Contact</a>
</nav>
<div class="container">
<div class="card">
<h2>About Us</h2>
<p>This is a sample HTML page. You can customize it for your website or app.</p>
</div>
<div class="card">
<h2>Our Services</h2>
<ul>
<li>Website Development</li>
<li>Mobile App Development</li>
<li>E-commerce Solutions</li>
</ul>
</div>
</div>
<footer>
<p>© 2026 My Website. All rights reserved.</p>
</footer>
</body>
</html>