<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Responsive Web Page</title> <link rel="stylesheet" href="styles.css">
<style>body { font-family: Arial, sans-serif; margin: 0; padding: 0;}header { background-color: #333; color: #fff; padding: 10px;}nav ul { list-style-type: none; margin: 0; padding: 0;}nav ul li { display: inline; margin-right: 10px;}nav ul li a { color: #fff; text-decoration: none;}main { padding: 20px;}footer { background-color: #333; color: #fff; text-align: center; padding: 10px;}
</style></head><body> <header> <h1>Responsive Web Page</h1> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Services</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <main> <section> <h2>Welcome to our website!</h2> <p>This is a simple example of a responsive web page.</p> </section> </main> <footer> <p>© 2024 Your Website. All rights reserved.</p> </footer></body></html>