-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
55 lines (53 loc) · 1.59 KB
/
terms.html
File metadata and controls
55 lines (53 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Terms and conditions — MadewithDativejs</title>
<link rel="stylesheet" href="css/tailwind.css">
</head>
<body class="bg-blue-900">
<div class="shadow-2xl py-10 text-white">
<h1 class="text-2xl text-white py-10 text-center">Terms and conditions</h1>
<p class="mx-10">If you want to add your project to the projects:</p><br />
<div class="w-50 border-1">
<p class=""><b class="rounded-full">1</b>: Fork the Repository on GitHub</p>
<p class=""><b class="rounded-full">2</b>: Edit the projects.json file and add your project details there in this form</p>
<pre class="text-sm"><code>
{
"name": "<name of your project>",
"image": "<image of the project>",
"description": "<description of the project>",
"link": "<link url for the project>",
"author": "<your name>"
}
</code></pre>
<p class=""><b class="rounded-full">3</b>: Create a pull request on the Repository</p>
<p class=""><b class="rounded-full">4</b>: Wait for approval 😄</p>
</div>
</div>
</body>
<style>
div{
margin: 10px;
}
pre{
background-color: #f7f7f7;
border-radius: 2px;
display: block;
line-height: 1.5;
margin-bottom: 1.5625em;
overflow: auto;
padding: 2em;
outline: none;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
color: #525252;
font-size: 0.8rem;
padding: 5px;
line-height: inherit;
margin: 0 0px;
}
</style>
</html>