-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (88 loc) · 3.06 KB
/
index.html
File metadata and controls
101 lines (88 loc) · 3.06 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="public/style.css">
<title>Zachy_in_Code</title>
</head>
<body>
<header>
<div class="container">
<nav>
<ul>
<li class="title">
ZachyAPI
</li>
<li>
<a href="https://github.com/ZachyDev" target="_blank">
<i class="fa fa-heart"></i>Github
</a>
</li>
<li>
<a href="https://my-json-server.typicode.com/ZachyDev/ZachyAPI" target="_blank">
<i class="fa fa-cloud"></i>API
</a>
</li>
<li>
<a href="https://github.com/CodePro2" target="_blank">
<i class="fa fa-thumbs-up"></i>Supporters
</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<div class="container">
<h1>Fake Online REST API</h1>
<p>
Made with Love
<br />
Become a sponsor to ZachyAPI
Hey 👋 🙂
Thanks for visiting this page. Maintaining Open Source projects takes a lot of time. None of them is backed by a big corporation™. It's only possible thanks to your sponsorship! ❤️
With your support I can maintain ZachyAPI which is running for free since 14 April 2020 and has served around 1000 requests . I can also work on tools to make your dev life a little easier.
Thanks a lot for your support!
Feel free to reach me on my mail (viewable on my profile) for any question or comment.
</p>
<div id="resources">
<h1>Resources</h1>
<a href="https://my-json-server.typicode.com/ZachyDev/ZachyAPI/users" target="_blank">/users</a><br>
<a href="https://my-json-server.typicode.com/ZachyDev/ZachyAPI/companies" target="_blank">/companies</a><br>
<a href="https://my-json-server.typicode.com/ZachyDev/ZachyAPI/posts" target="_blank">/posts</a>
</div>
<p>
To access and modify resources, you can us e any HTTP method:
</p>
<p>
<code>GET</code>
<code>POST</code>
<code>PUT</code>
<code>PATCH</code>
<code>DELETE</code>
<code>OPTIONS</code>
</p>
<div id="custom-routes"></div>
<h1>Documentation</h1>
<p>
<a href="https://github.com/ZachyDev/ZachyAPI/edit/master/README.md" target="_blank">
README
</a>
</p>
</div>
</main>
<footer>
<div class="container">
<p>
<script>
document.write(`Zachy_in_Code @${ new Date().getFullYear() }`)
</script>
Github <a href="https://github.com/ZachyDev" target="_blank"><i class="fa fa-github"></i></a>
</p>
</div>
</footer>
<script src="public/script.js"></script>
</body>
</html>
</body>
</html>