-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecoder.html
More file actions
41 lines (29 loc) · 871 Bytes
/
Copy pathdecoder.html
File metadata and controls
41 lines (29 loc) · 871 Bytes
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
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, width=device-width">
<title>Decoders</title>
<link rel="stylesheet" type="text/css" href="index.css">
<style>
fieldset {
max-width:42em;
}
svg {
width:90vw;
max-width:40em;
}
</style>
</head>
<body class="flexColumn">
<nav id="backArrow"><a href="index.html">⬅</a></nav>
<p>
A decoder takes a binary code and maps it to an explicit value.
</p>
<main id="root">This will contain several SVGs of circuits.</main>
<script type="module" src="/src/decoder-demo.jsx"></script>
<footer>
<p>Please visit <a href="https://en.wikipedia.org/wiki/Binary_decoder">Wikipedia</a> for more information about decoders.</p>
</footer>
</body>
</html>