Skip to content

Commit

Permalink
Create Docs.html
Browse files Browse the repository at this point in the history
  • Loading branch information
PenguinHubLearning authored Oct 12, 2023
1 parent 2812527 commit 7c3c537
Showing 1 changed file with 115 additions and 0 deletions.
115 changes: 115 additions & 0 deletions Docs/Docs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PenguAPI Documentation</title>
<style>
body {
background-color: #121212;
color: #ffffff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #333;
color: #ffffff;
text-align: center;
padding: 20px;
}

nav {
background-color: #333;
padding: 10px 0;
}

nav ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}

nav li {
display: inline;
margin-right: 20px;
}

nav a {
color: #ffffff;
text-decoration: none;
font-weight: bold;
font-size: 18px;
transition: color 0.3s;
}

nav a:hover {
color: #007acc;
}

main {
margin: 20px;
padding: 20px;
}

section {
background-color: #1e1e1e;
border: 1px solid #333;
border-radius: 5px;
margin-bottom: 20px;
padding: 20px;
}

h2 {
color: #ffffff;
}

p {
color: #cccccc;
}

footer {
background-color: #333;
color: #ffffff;
text-align: center;
padding: 10px;
}
</style>
</head>
<body>
<header>
<h1>PenguAPI Documentation</h1>
</header>
<nav>
<ul>
<li><a href="#">Getting Started</a></li>
<li><a href="#">Endpoints</a></li>
<li><a href="#">Examples</a></li>
</ul>
</nav>
<main>
<section>
<h2>Getting Started</h2>
<p>Learn how to get started with PenguAPI.</p>
<!-- Add documentation content for getting started -->
</section>

<section>
<h2>Endpoints</h2>
<p>Explore the available API endpoints.</p>
<!-- Add documentation content for endpoints -->
</section>

<section>
<h2>Examples</h2>
<p>See examples of how to use PenguAPI.</p>
<!-- Add documentation content for examples -->
</section>
</main>
<footer>
<p>&copy; 2023 PenguAPI Documentation</p>
</footer>
</body>
</html>

0 comments on commit 7c3c537

Please sign in to comment.