summaryrefslogtreecommitdiff
path: root/data/html/index.html
blob: 268aad9abbba6c9bf78062599a34306fd2e55f3e (plain)
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
<!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>
			<p id="state"></p>
			<button onclick="singlePicture()">Take single picture</button>
		</main>

		<script src="./js/birdscan.js"></script>
	</body>

</html>