diff options
-rw-r--r-- | favicon.svg | 1 | ||||
-rw-r--r-- | index.html | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/favicon.svg b/favicon.svg new file mode 100644 index 0000000..ca2ec80 --- /dev/null +++ b/favicon.svg | |||
@@ -0,0 +1 @@ | |||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="12" viewBox="0 0 384 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M96 96V256c0 53 43 96 96 96s96-43 96-96H208c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V192H208c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V128H208c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96S96 43 96 96zM320 240v16c0 70.7-57.3 128-128 128s-128-57.3-128-128V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H216V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v24z"/></svg> | |||
diff --git a/index.html b/index.html new file mode 100644 index 0000000..71b17c4 --- /dev/null +++ b/index.html | |||
@@ -0,0 +1,37 @@ | |||
1 | <!doctype html> | ||
2 | |||
3 | <!-- | ||
4 | * EchoClip, a web tool to record and play back audio clips. | ||
5 | * Copyright 2024 Pacien TRAN-GIRARD | ||
6 | * SPDX-License-Identifier: EUPL-1.2 | ||
7 | --> | ||
8 | |||
9 | <html> | ||
10 | |||
11 | <head lang="en-us"> | ||
12 | <meta charset="utf-8"> | ||
13 | <meta name="viewport" content="width=device-width"> | ||
14 | |||
15 | <link rel="icon" href="favicon.svg"> | ||
16 | <link rel="mask-icon" href="favicon.svg" color="#000000"> | ||
17 | <link rel="apple-touch-icon" href="favicon.svg"> | ||
18 | |||
19 | <title>EchoClip</title> | ||
20 | </head> | ||
21 | |||
22 | <body> | ||
23 | <header> | ||
24 | <h1>EchoClip</h1> | ||
25 | <p>A web tool to record and play back audio clips.</p> | ||
26 | </header> | ||
27 | |||
28 | <footer> | ||
29 | <ul> | ||
30 | <li><a href="https://pacien.org">© 2024 Pacien</a></li> | ||
31 | <li><a href="https://cgit.pacien.net/echoclip">Source code (EUPL)</a></li> | ||
32 | <li><a href="https://www.paypal.com/paypalme/pacien/10">Donate</a></li> | ||
33 | </ul> | ||
34 | </footer> | ||
35 | </body> | ||
36 | |||
37 | </html> | ||