diff options
author | xengineering <mail2xengineering@protonmail.com> | 2021-06-11 09:06:56 +0200 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2021-06-11 09:12:06 +0200 |
commit | d93959de9f7ffd061dc57bec7c532829f592bf77 (patch) | |
tree | 5b6986d280a06d5671ed8657427ab87d1873742a /data | |
parent | 5ee9c18acf25ca06dfacdb857edbd54b8454b7e8 (diff) | |
download | birdscan-d93959de9f7ffd061dc57bec7c532829f592bf77.tar birdscan-d93959de9f7ffd061dc57bec7c532829f592bf77.tar.zst birdscan-d93959de9f7ffd061dc57bec7c532829f592bf77.zip |
Implement Web Server
Diffstat (limited to 'data')
-rw-r--r-- | data/html/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/data/html/index.html b/data/html/index.html new file mode 100644 index 0000000..af72c46 --- /dev/null +++ b/data/html/index.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> + +<!-- + vim: shiftwidth=4 tabstop=4 noexpandtab +--> + +<html> + + <head> + + <title>birdscan</title> + + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="./css/birdscan.css" type="text/css"> + + </head> + + <body> + + <nav> + <a href="https://xengineering.eu">xengineering</a> + </nav> + + <main> + <h1>birdscan</h1> + <p>A software to take beautiful pictures of birds with a Raspberry Pi Camera.</p> + </main> + + </body> + +</html> |