free-license / index.html
miguelgargallo's picture
Update index.html
75ef697 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pylar AI Creative ML Free License</title>
<style>
:root {
--primary: #2a9d8f;
--secondary: #264653;
--accent: #e9c46a;
--light: #f8f9fa;
--dark: #212529;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--dark);
background-color: var(--light);
padding: 2rem;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: white;
border-radius: 12px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
header {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: 2.5rem 2rem;
text-align: center;
}
h1 {
font-size: 2.2rem;
margin-bottom: 0.5rem;
font-weight: 800;
}
.copyright {
margin-top: 1rem;
font-size: 0.95rem;
opacity: 0.9;
}
.content {
padding: 2rem;
}
.section {
margin-bottom: 2rem;
padding-bottom: 1rem;
}
.section:not(:last-child) {
border-bottom: 1px solid #e9ecef;
}
h2 {
font-size: 1.5rem;
color: var(--secondary);
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid rgba(42, 157, 143, 0.2);
}
p {
margin-bottom: 1rem;
font-size: 1.05rem;
line-height: 1.7;
}
ol {
padding-left: 1.8rem;
margin-bottom: 1rem;
}
li {
margin-bottom: 0.8rem;
}
.footer {
text-align: center;
padding: 1.5rem;
background-color: #f8f9fa;
border-top: 1px solid #e9ecef;
}
a {
color: var(--primary);
text-decoration: none;
font-weight: 500;
}
a:hover {
text-decoration: underline;
}
.highlight {
background-color: rgba(42, 157, 143, 0.1);
padding: 0.2rem 0.4rem;
border-radius: 4px;
font-weight: 500;
}
@media (max-width: 768px) {
body {
padding: 1rem;
}
header {
padding: 1.5rem 1rem;
}
h1 {
font-size: 1.8rem;
}
.content {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Pylar AI Creative ML Free License</h1>
<div class="copyright">Copyright (C) 2023 PylarAI</div>
</header>
<div class="content">
<div class="section">
<h2>Permission</h2>
<p>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without
limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is furnished to do so, subject to the following
conditions:
</p>
</div>
<div class="section">
<h2>Conditions</h2>
<ol>
<li>
The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
</li>
<li>
Any work using, copying, modifying, merging, publishing, distributing, sublicensing, and/or selling copies
of the Software must explicitly acknowledge <span class="highlight"><a href="mailto:[email protected]"
target="_blank" rel="noopener noreferrer">✉️ Superdatas</a></span> as the original author of this work.
</li>
<li>
The file in which this license is included (LICENSE.md) must remain unmodified. Any modifications to this
file will be considered a violation of this license.
</li>
</ol>
</div>
<div class="section">
<h2>Disclaimer</h2>
<p>
The Software is provided "as is", without warranty of any kind, express or implied, including but not limited
to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall
the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of
contract, tort or otherwise, arising from, out of or in connection with the Software or the use or other
dealings in the Software.
</p>
</div>
</div>
<div class="footer">
<p>
For further details about this license, please visit:
<a href="https://huggingface.co/spaces/superdatas/free-license" target="_blank"
rel="noopener noreferrer">https://huggingface.co/spaces/superdatas/free-license</a>
</p>
</div>
</div>
</body>
</html>