-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlicense.html
80 lines (72 loc) · 2.11 KB
/
license.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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Carbonated License Version 1.0</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: #f9f9f9;
}
.container {
max-width: 800px;
margin: auto;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
}
h2 {
color: #333;
}
p {
color: #555;
}
</style>
</head>
<body>
<div class="container">
<h1>Carbonated License Version 1.0</h1>
<p>Copyright < Your Name > < Copyright Year ></p>
<p>
This license grants the following rights to any holder of the software
and accompanying documentation:
</p>
<h2>FREE USAGE</h2>
<p>You may freely use this software in any shape or form.</p>
<h2>RIGHT TO MODIFY</h2>
<p>
You have the right to modify, merge, publish, distribute, and/or sell
copies of this software, provided that the redistributed software
includes the original license and remains open source.
</p>
<h2>RIGHT TO PRIVATE USE</h2>
<p>
You may use and modify the software for personal, private use without
any obligation to disclose your modifications.
</p>
<h2>RIGHT TO SHARE</h2>
<p>
You may share the software with others, as long as you include this
license and any modifications remain open source.
</p>
<h2>RIGHT TO CONTRIBUTE</h2>
<p>
You are encouraged to contribute to the development of the software by
submitting improvements or fixes back to the original project, but this
is not a requirement.
</p>
<p>
Feel free to replace < Your Name > and < Copyright Year >
with your details.
</p>
</div>
</body>
</html>