-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopyright.html
More file actions
62 lines (55 loc) · 3.23 KB
/
Copy pathcopyright.html
File metadata and controls
62 lines (55 loc) · 3.23 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
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Copyright</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Fira+Sans:wght@300..900&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="words.html" class="active">Words</a>
<a href="projects.html">Projects</a>
<a href="gallery.html">Gallery</a>
</nav>
</header>
<main class="subpage-container">
<div class="subpage-content">
<h1 class="about-heading">Copyright © 2024 Timur Gabaidulin</h1>
<p class="about-text">MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this template and associated documentation files (the "Template"), to deal
in the template without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the template, and to permit persons to whom the template is
furnished to do so, subject to the following conditions:<br><br>
1. The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the template.<br><br>
2. **Attribution Requirement**: You must give appropriate credit, provide a
link to the original source, and indicate if changes were made. You may do so
in any reasonable manner, but not in any way that suggests the licensor endorses
you or your use of the template. Attribution must be displayed prominently, either
in the footer of the website, in documentation, or wherever appropriate.<br><br>
THE TEMPLATE 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 TEMPLATE OR THE USE OR OTHER DEALINGS IN
THE TEMPLATE.
</p>
</div>
</main>
<footer class="footer">
<p>© 2024 Timur Gabaidulin. Template licensed under <a href="copyright.html" target="_blank">MIT License</a>.</p>
<p>Icons by <a href="https://fontawesome.com/" target="_blank">FontAwesome</a></p>
</footer>
</body>
</html>