add attributions page
This commit is contained in:
parent
ffa7805352
commit
b1c97c9f9f
|
@ -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>
|
|
@ -31,6 +31,7 @@ class DDFooter extends HTMLElement {
|
|||
<footer>
|
||||
<ul>
|
||||
<li><a href="/about.html">about</a></li>
|
||||
<li><a href="/attributions.html">attributions</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
`;
|
||||
|
|
Loading…
Reference in New Issue