mirror of
https://github.com/CKegel/Web-SSTV.git
synced 2025-06-04 02:20:17 +00:00
35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<!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> |