Spaces:
Running
Running
Update index.html
Browse files- index.html +200 -37
index.html
CHANGED
@@ -1,39 +1,202 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<html>
|
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 |
</div>
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
|
4 |
+
<head>
|
5 |
+
<meta charset="UTF-8">
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7 |
+
<title>Pylar AI Creative ML Free License</title>
|
8 |
+
<style>
|
9 |
+
:root {
|
10 |
+
--primary: #2a9d8f;
|
11 |
+
--secondary: #264653;
|
12 |
+
--accent: #e9c46a;
|
13 |
+
--light: #f8f9fa;
|
14 |
+
--dark: #212529;
|
15 |
+
}
|
16 |
+
|
17 |
+
* {
|
18 |
+
margin: 0;
|
19 |
+
padding: 0;
|
20 |
+
box-sizing: border-box;
|
21 |
+
}
|
22 |
+
|
23 |
+
body {
|
24 |
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
25 |
+
line-height: 1.6;
|
26 |
+
color: var(--dark);
|
27 |
+
background-color: var(--light);
|
28 |
+
padding: 2rem;
|
29 |
+
}
|
30 |
+
|
31 |
+
.container {
|
32 |
+
max-width: 800px;
|
33 |
+
margin: 0 auto;
|
34 |
+
background-color: white;
|
35 |
+
border-radius: 12px;
|
36 |
+
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
|
37 |
+
overflow: hidden;
|
38 |
+
}
|
39 |
+
|
40 |
+
header {
|
41 |
+
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
42 |
+
color: white;
|
43 |
+
padding: 2.5rem 2rem;
|
44 |
+
text-align: center;
|
45 |
+
}
|
46 |
+
|
47 |
+
h1 {
|
48 |
+
font-size: 2.2rem;
|
49 |
+
margin-bottom: 0.5rem;
|
50 |
+
font-weight: 800;
|
51 |
+
}
|
52 |
+
|
53 |
+
.copyright {
|
54 |
+
margin-top: 1rem;
|
55 |
+
font-size: 0.95rem;
|
56 |
+
opacity: 0.9;
|
57 |
+
}
|
58 |
+
|
59 |
+
.content {
|
60 |
+
padding: 2rem;
|
61 |
+
}
|
62 |
+
|
63 |
+
.section {
|
64 |
+
margin-bottom: 2rem;
|
65 |
+
padding-bottom: 1rem;
|
66 |
+
}
|
67 |
+
|
68 |
+
.section:not(:last-child) {
|
69 |
+
border-bottom: 1px solid #e9ecef;
|
70 |
+
}
|
71 |
+
|
72 |
+
h2 {
|
73 |
+
font-size: 1.5rem;
|
74 |
+
color: var(--secondary);
|
75 |
+
margin-bottom: 1rem;
|
76 |
+
padding-bottom: 0.5rem;
|
77 |
+
border-bottom: 2px solid rgba(42, 157, 143, 0.2);
|
78 |
+
}
|
79 |
+
|
80 |
+
p {
|
81 |
+
margin-bottom: 1rem;
|
82 |
+
font-size: 1.05rem;
|
83 |
+
line-height: 1.7;
|
84 |
+
}
|
85 |
+
|
86 |
+
ol {
|
87 |
+
padding-left: 1.8rem;
|
88 |
+
margin-bottom: 1rem;
|
89 |
+
}
|
90 |
+
|
91 |
+
li {
|
92 |
+
margin-bottom: 0.8rem;
|
93 |
+
}
|
94 |
+
|
95 |
+
.footer {
|
96 |
+
text-align: center;
|
97 |
+
padding: 1.5rem;
|
98 |
+
background-color: #f8f9fa;
|
99 |
+
border-top: 1px solid #e9ecef;
|
100 |
+
}
|
101 |
+
|
102 |
+
a {
|
103 |
+
color: var(--primary);
|
104 |
+
text-decoration: none;
|
105 |
+
font-weight: 500;
|
106 |
+
}
|
107 |
+
|
108 |
+
a:hover {
|
109 |
+
text-decoration: underline;
|
110 |
+
}
|
111 |
+
|
112 |
+
.highlight {
|
113 |
+
background-color: rgba(42, 157, 143, 0.1);
|
114 |
+
padding: 0.2rem 0.4rem;
|
115 |
+
border-radius: 4px;
|
116 |
+
font-weight: 500;
|
117 |
+
}
|
118 |
+
|
119 |
+
@media (max-width: 768px) {
|
120 |
+
body {
|
121 |
+
padding: 1rem;
|
122 |
+
}
|
123 |
+
|
124 |
+
header {
|
125 |
+
padding: 1.5rem 1rem;
|
126 |
+
}
|
127 |
+
|
128 |
+
h1 {
|
129 |
+
font-size: 1.8rem;
|
130 |
+
}
|
131 |
+
|
132 |
+
.content {
|
133 |
+
padding: 1.5rem;
|
134 |
+
}
|
135 |
+
}
|
136 |
+
</style>
|
137 |
+
</head>
|
138 |
+
|
139 |
+
<body>
|
140 |
+
<div class="container">
|
141 |
+
<header>
|
142 |
+
<h1>Pylar AI Creative ML Free License</h1>
|
143 |
+
<div class="copyright">Copyright (C) 2023 PylarAI</div>
|
144 |
+
</header>
|
145 |
+
|
146 |
+
<div class="content">
|
147 |
+
<div class="section">
|
148 |
+
<h2>Permission</h2>
|
149 |
+
<p>
|
150 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
151 |
+
documentation files (the "Software"), to deal in the Software without restriction, including without
|
152 |
+
limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
|
153 |
+
Software, and to permit persons to whom the Software is furnished to do so, subject to the following
|
154 |
+
conditions:
|
155 |
+
</p>
|
156 |
+
</div>
|
157 |
+
|
158 |
+
<div class="section">
|
159 |
+
<h2>Conditions</h2>
|
160 |
+
<ol>
|
161 |
+
<li>
|
162 |
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
163 |
+
portions of the Software.
|
164 |
+
</li>
|
165 |
+
<li>
|
166 |
+
Any work using, copying, modifying, merging, publishing, distributing, sublicensing, and/or selling copies
|
167 |
+
of the Software must explicitly acknowledge <span class="highlight"><a href="mailto:[email protected]"
|
168 |
+
target="_blank" rel="noopener noreferrer">✉️ Superdatas</a></span>
|
169 |
+
</p> as the
|
170 |
+
original
|
171 |
+
author of this work.
|
172 |
+
</li>
|
173 |
+
<li>
|
174 |
+
The file in which this license is included (LICENSE.md) must remain unmodified. Any modifications to this
|
175 |
+
file will be considered a violation of this license.
|
176 |
+
</li>
|
177 |
+
</ol>
|
178 |
+
</div>
|
179 |
+
|
180 |
+
<div class="section">
|
181 |
+
<h2>Disclaimer</h2>
|
182 |
+
<p>
|
183 |
+
The Software is provided "as is", without warranty of any kind, express or implied, including but not limited
|
184 |
+
to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall
|
185 |
+
the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of
|
186 |
+
contract, tort or otherwise, arising from, out of or in connection with the Software or the use or other
|
187 |
+
dealings in the Software.
|
188 |
+
</p>
|
189 |
+
</div>
|
190 |
</div>
|
191 |
+
|
192 |
+
<div class="footer">
|
193 |
+
<p>
|
194 |
+
For further details about this license, please visit:
|
195 |
+
<a href="https://huggingface.co/spaces/superdatas/free-license" target="_blank"
|
196 |
+
rel="noopener noreferrer">https://huggingface.co/spaces/superdatas/free-license</a>
|
197 |
+
</p>
|
198 |
+
</div>
|
199 |
+
</div>
|
200 |
+
</body>
|
201 |
+
|
202 |
+
</html>
|