97 lines
2.0 KiB
HTML
97 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Dummy Page</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #f5f5f5;
|
|
color: #333;
|
|
}
|
|
header {
|
|
background: #0073e6;
|
|
color: white;
|
|
padding: 1rem;
|
|
text-align: center;
|
|
}
|
|
nav {
|
|
background: #005bb5;
|
|
padding: 0.5rem;
|
|
text-align: center;
|
|
}
|
|
nav a {
|
|
color: white;
|
|
margin: 0 10px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
main {
|
|
padding: 2rem;
|
|
}
|
|
section {
|
|
margin-bottom: 2rem;
|
|
}
|
|
footer {
|
|
background: #333;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 1rem;
|
|
margin-top: 2rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Welcome to the Dummy Page</h1>
|
|
<p>This is just a placeholder website.</p>
|
|
</header>
|
|
|
|
<nav>
|
|
<a href="#">Home</a>
|
|
<a href="#">About</a>
|
|
<a href="#">Services</a>
|
|
<a href="#">Contact</a>
|
|
</nav>
|
|
|
|
<main>
|
|
<section>
|
|
<h2>About Us</h2>
|
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ac orci vel nisi gravida feugiat.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Our Services</h2>
|
|
<ul>
|
|
<li>Service One</li>
|
|
<li>Service Two</li>
|
|
<li>Service Three</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Contact</h2>
|
|
<form>
|
|
<label for="name">Name:</label><br>
|
|
<input type="text" id="name" name="name"><br><br>
|
|
|
|
<label for="email">Email:</label><br>
|
|
<input type="email" id="email" name="email"><br><br>
|
|
|
|
<label for="msg">Message:</label><br>
|
|
<textarea id="msg" name="msg" rows="4"></textarea><br><br>
|
|
|
|
<button type="submit">Send</button>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2025 Dummy Company. All rights reserved.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|