-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (42 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/dist/style.css">
<title>caveapi</title>
</head>
<body>
<nav>
<ul class="navbrand">
<li>Cave-<span>Api</span></li>
</ul>
<ul class="profile">
<li><a href="#">Documentation</a></li>
<li><a href="#">Snippets</a></li>
</ul>
</nav>
<main>
<h1>Your no 1 goto for all Api needs</h1>
<h3>Every Api you need from jokes to memes to facts</h3>
<button>Documentation</button>
</main>
<section>
<h1>Quick Routes</h1>
<div class="container">
<div>
<h1><a href="/facts">/jokes</a></h1>
<P>Returns a json data containing a few jokes</P>
</div>
<div>
<h1><a href="/">/facts</a></h1>
<P>Returns a json data containing a few facts</P>
</div>
<div>
<h1><a href="/">/memes</a></h1>
<P>Returns a random meme</P>
</div>
</div>
</section>
</body>
</html>