-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattribute.html
More file actions
110 lines (95 loc) · 2.51 KB
/
Copy pathattribute.html
File metadata and controls
110 lines (95 loc) · 2.51 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Attributions</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f9f9f9;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #222;
color: white;
padding: 20px;
text-align: center;
}
main {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 6px;
}
h1 {
margin-top: 0;
}
ul {
list-style-type: none;
padding-left: 0;
}
li {
margin: 15px 0;
line-height: 1.6;
}
a {
color: #0073e6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 20px;
font-size: 0.9em;
background-color: #f1f1f1;
color: #777;
}
</style>
</head>
<body>
<header>
<h1>Resource Attributions</h1>
</header>
<main>
<p>This page lists all external resources used on this website that require attribution, in accordance with their
licensing terms.</p>
<ul>
<li>
<a href="https://www.flaticon.com/free-icons/torch" title="torch icons">
Torch icons created by Freepik - Flaticon
</a>
</li>
<li>
<a href="https://www.flaticon.com/free-icons/time-machine" title="time machine icons">Time machine icons created
by Smashicons - Flaticon
</a>
</li>
<li>
<a href="https://www.flaticon.com/free-icons/time-bomb" title="time bomb icons">Time bomb icons created by Freepik - Flaticon</a>
</li>
<li>
<a href="https://www.flaticon.com/free-icons/axe" title="axe icons">Axe icons created by Freepik - Flaticon</a>
</li>
<li>
<a href="https://www.flaticon.com/free-icons/key" title="key icons">Key icons created by monkik - Flaticon</a>
</li>
<li>
<a href="https://www.flaticon.com/free-icons/crown" title="crown icons">Crown icons created by Freepik - Flaticon</a>
</li>
<!-- Add more attributions here as needed -->
<!-- Example:
<li>
Photo by <a href="https://unsplash.com/@photographer">Photographer Name</a> on <a href="https://unsplash.com/">Unsplash</a>
</li>
-->
</ul>
</main>
</body>
</html>