96 lines
2.4 KiB
Text
96 lines
2.4 KiB
Text
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>My Wiki Page</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f4f4f4;
|
|
}
|
|
header {
|
|
background: #333;
|
|
color: white;
|
|
padding: 1em;
|
|
text-align: center;
|
|
}
|
|
nav {
|
|
background: #444;
|
|
padding: 10px;
|
|
}
|
|
nav ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
nav ul li {
|
|
display: inline;
|
|
margin-right: 10px;
|
|
}
|
|
nav a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
main {
|
|
padding: 20px;
|
|
}
|
|
footer {
|
|
text-align: center;
|
|
padding: 1em;
|
|
background: #333;
|
|
color: white;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1>Welcome to My Wiki</h1>
|
|
</header>
|
|
|
|
<nav>
|
|
<ul>
|
|
<li><a href="#intro">Introduction</a></li>
|
|
<li><a href="#history">History</a></li>
|
|
<li><a href="#related">Related Topics</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<main>
|
|
<section id="intro">
|
|
<h2>Introduction</h2>
|
|
<p>This is a wiki page about an important topic. A wiki is a platform where users can collaborate and contribute to shared knowledge.</p>
|
|
<img src="https://example.com/wiki_image.jpg" alt="A relevant image" width="300">
|
|
</section>
|
|
|
|
<section id="history">
|
|
<h2>History</h2>
|
|
<p>Here is some background information about the topic. The history of this topic spans several decades, and various important events contributed to its development.</p>
|
|
<ul>
|
|
<li>Event 1: Description of the event.</li>
|
|
<li>Event 2: Another description.</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section id="related">
|
|
<h2>Related Topics</h2>
|
|
<p>These are some related topics you might find interesting:</p>
|
|
<ol>
|
|
<li><a href="topic1.html">Topic 1</a></li>
|
|
<li><a href="topic2.html">Topic 2</a></li>
|
|
<li><a href="topic3.html">Topic 3</a></li>
|
|
</ol>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2024 My Wiki Page</p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|