-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2812527
commit 7c3c537
Showing
1 changed file
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>© 2023 PenguAPI Documentation</p> | ||
</footer> | ||
</body> | ||
</html> |