add attributions page

This commit is contained in:
filifa 2024-09-08 15:45:09 -05:00
parent ffa7805352
commit b1c97c9f9f
2 changed files with 31 additions and 0 deletions

30
attributions.html Normal file
View File

@ -0,0 +1,30 @@
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<link rel="icon" href="favicon.ico" />
<script src="elements.js" type="text/javascript" defer></script>
<title>Attributions</title>
</head>
<body>
<dd-header></dd-header>
<main>
<article>
<h1>Attributions.</h1>
<ul>
<li>
"<a href="https://www.flickr.com/photos/genista/45519453/in/photostream/">watching</a>"
by
<a href="https://www.flickr.com/photos/genista/">Kai Schreiber</a>
is licensed under
<a href="https://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a>
</li>
</ul>
</article>
</main>
<dd-footer></dd-footer>
</body>
</html>

View File

@ -31,6 +31,7 @@ class DDFooter extends HTMLElement {
<footer> <footer>
<ul> <ul>
<li><a href="/about.html">about</a></li> <li><a href="/about.html">about</a></li>
<li><a href="/attributions.html">attributions</a></li>
</ul> </ul>
</footer> </footer>
`; `;