23 lines
578 B
HTML
23 lines
578 B
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>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Welcome to the Dummy Page</h1>
|
|
</header>
|
|
<main>
|
|
<section>
|
|
<p>This is a simple HTML page created as a placeholder or for testing purposes. You can add more content and styles to expand it.</p>
|
|
<a href="https://example.com">Visit Example</a>
|
|
</section>
|
|
</main>
|
|
<footer>
|
|
<p>© 2024 Dummy Page. All rights reserved.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|