-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (81 loc) · 1.5 KB
/
index.html
File metadata and controls
93 lines (81 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>
CodeSupport Resources API
</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
header, footer {
margin: 25px;
text-align: center;
}
section {
margin: 25px;
padding: 25px;
border: 1px solid black;
}
ol {
margin-left: 20px;
}
pre {
margin-top: 5px;
margin-bottom: 5px;
padding: 5px;
background-color: #F7F7F7;
}
</style>
</head>
<body>
<header>
<h1>
CodeSupport Resources API
</h1>
</header>
<main>
<section id="about">
<h2>
About
</h2>
<p>
A simple repository containing various resources that the community recommends.
</p>
</section>
<section id="adding-resources">
<h2>
Adding Resources
</h2>
<ol>
<li>
Fork <a target="_blank" href="https://github.com/codesupport/resources-api">this</a> repository
</li>
<li>
In the correct JSON file add your resource using the following format:
<pre>
{
"name": String,
"description": String,
"url": String,
"free": Boolean,
"tags": String[]
}
</pre>
</li>
<li>
Create a pull request back into this repository
</li>
</ol>
</section>
</main>
<footer>
<p>
© CodeSupport <script>document.write(new Date().getFullYear());</script>
-
<a target="_blank" href="https://github.com/codesupport/resources-api">
Contribute
</a>
</p>
</footer>
</body>
</html>