Skip to content

Commit

Permalink
Merge pull request #1100 from Tejashri-Taral/Licensing
Browse files Browse the repository at this point in the history
feat: 🌟Added "Licensing page" reflecting "MIT License"
  • Loading branch information
apu52 authored Jul 17, 2024
2 parents 4f5074f + 028b48e commit 93a6d3a
Show file tree
Hide file tree
Showing 2 changed files with 111 additions and 0 deletions.
110 changes: 110 additions & 0 deletions Licensing.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Licensing Page</title>

<style>
body {
font-family: 'Lato', sans-serif;
background: linear-gradient(to bottom, #080f21, #06255b);
color: #ffffff;
margin: 0;
padding: 0;
}

.container {
max-width: 70%;
margin: 50px auto;
padding: 20px;
border-radius: 10px;
}

.container .title {
font-size: 4.3em;
color: #13b8e6;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin-bottom: 20px;
font-weight: 700;
text-align: center;
}

.container .section-title {
text-align: left;
font-size: 2em;
color: #0dcaf0;
margin-top: 20px;
}

.container .license-text {
font-size: 1.2em;
line-height: 1.6;
color: #f0f0f0;
margin-bottom: 20px;
text-align: left;
}

.container hr {
width: 50%;
color: #d56fa1;
opacity: 0.3;
margin: 20px auto;
}

@media (max-width: 768px) {
.container .title {
font-size: 2em;
}

.container .section-title {
font-size: 1.5em;
}

.container .license-text {
font-size: 1em;
}
}

.copyright-footer {
display: flex;
justify-content: center;
margin-top: 25px;
font-size: 17px;
color: rgb(185, 185, 185);
}

</style>
</head>
<body>
<a href="index.html">
<img src="./img/Screenshot 2024-01-23 003448.png" style="width: 130px; border-radius: 6px; margin-top: 20px; margin-left: 20px;">
</a>
<div class="container">
<h1 class="title">Licensing Page</h1>
<div class="license-text">
<h2 class="section-title">MIT License</h2>
<p>Copyright (c) 2023 Arpan Chowdhury</p>
<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>
<p>The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.</p>
<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>
<hr>
<footer class="copyright-footer">
<p>&copy; 2023 Arpan Chowdhury. All rights reserved.</p>
</footer>
</div>
</body>
</html>
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1371,6 +1371,7 @@ <h4 class="footer-head" class="footer__subtitle">Support</h4>
<p><a href="./faq.html" class="footer__link">FAQs</a></p>
<p><a href="./tnc.html" class="footer__link">Terms & Conditions</a></p>
<p><a href="./privacy.html" class="footer__link">Privacy Policy</a></p>
<p><a href="./Licensing.html" class="footer__link">Licensing</a></p>
<p><a href="#cnt-form" class="footer__link">Contact Us</a></p>
</div>
</div>
Expand Down

0 comments on commit 93a6d3a

Please sign in to comment.