-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.89 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KirkBot Documentation</title>
<link rel="stylesheet" href="style.css">
<script src="code.js" async></script>
<noscript>You need to enable JavaScript to view the full site.</noscript>
</head>
<body>
<div class="header">
<h1>KirkBot Documentation</h1>
<p>Documentation for the KirkBot Discord bot.</p>
</div>
<main>
<div class="main-container">
<div class="sidebar">
<h3>Overview</h3>
<a href="#chapter1">Getting started</a>
<a href="#chapter2">Features</a>
<ul>
<li><a href="#chapter2-1">Feature 1</a></li>
<li><a href="#chapter2-2">Feature 2</a></li>
<li><a href="#chapter2-3">Feature 3</a></li>
</ul>
<h3>Commands</h3>
<a href="#chapter3">Chapter 3</a>
<a href="#chapter4">Chapter 4</a>
</div>
<div class="documentation">
<h1>My Discord Bot Documentation</h1>
<h2 id="chapter1">Chapteer 1</h2>
<p>Chapter 1 content goes here.</p>
<h2 id="chapter2">Chapter 2</h2>
<p>Chapter 2 content goes here.</p>
<h2 id="chapter3">Chapter 3</h2>
<p>Chapter 3 content goes here.</p>
<h2 id="chapter4">Chapter 4</h2>
<p>Chapter 4 content goes here.</p>
</div>
</div>
</main>
</body>
</html>