-
Notifications
You must be signed in to change notification settings - Fork 16
/
learn.html
35 lines (34 loc) · 1.23 KB
/
learn.html
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>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
<link rel="stylesheet" href="./style.css">
<title>Web-SSTV</title>
</head>
<nav class="container">
<ul>
<li><strong><a href="./index.html" class="contrast">Web SSTV</a></strong></li>
</ul>
<ul>
<li><a href="./encode.html">Encode</a></li>
<li><a href="./decode.html">Decode</a></li>
<li><a href="./learn.html" class="contrast">Learn</a></li>
</ul>
</nav>
<body>
<main class="container">
<h4>Educational resources coming soon!</h4>
<p>For now, be sure to check out JL Barber's (N7CXI) <a href="http://www.barberdsp.com/downloads/Dayton%20Paper.pdf">Proposal for SSTV Mode specifications</a>, it was instrumental in the creation of Web-SSTV</p>
</main>
<footer class="container">
<small>SSTV signal decoding and more encoding modes coming soon.</small>
<br>
<small><a href="https://github.com/CKegel/Web-SSTV/">Check out the project on Github</a></small>
<br>
<small>© 2024 Christian Kegel - Available under the MIT License</small>
</footer>
</body>
<script src="./encode.js"></script>
</html>