-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (69 loc) · 2.53 KB
/
Copy pathindex.html
File metadata and controls
75 lines (69 loc) · 2.53 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Communications Engineering Suite</title>
<meta
name="description"
content="A suite of interactive, high-performance web simulators for learning Analog Modulation, Digital Modulation, and the Nyquist Sampling Theorem."
/>
<meta
name="keywords"
content="engineering, communication systems, analog modulation, digital modulation, sampling theorem, interactive visualizer"
/>
<meta name="author" content="Your Name" />
<meta property="og:title" content="Communications Engineering Suite" />
<meta
property="og:description"
content="Interactive visualizers for Analog, Digital, and Sampling communication systems."
/>
<meta property="og:type" content="website" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="site-header">
<h1>Communications Engineering Suite</h1>
<p>
Interactive, real-time visualizers for signal processing and
communication theory.
</p>
</header>
<main>
<nav aria-label="Visualizer Suite Navigation">
<ul class="grid-container">
<li class="card">
<h2>Analog Modulation</h2>
<p>
Explore continuous wave modulation including AM, FM, and PM with
multi-tone composite message support.
</p>
<a href="analog/" aria-label="Launch Analog Modulation Visualizer"
>Launch Visualizer <span aria-hidden="true">→</span></a
>
</li>
<li class="card">
<h2>Digital Modulation</h2>
<p>
Visualize discrete binary data transmission using Amplitude,
Frequency, and Phase Shift Keying (ASK, FSK, BPSK).
</p>
<a href="digital/" aria-label="Launch Digital Modulation Visualizer"
>Launch Visualizer <span aria-hidden="true">→</span></a
>
</li>
<li class="card">
<h2>Sampling & Nyquist</h2>
<p>
Understand the transition from analog to digital, the Nyquist rate
limits, and the effects of aliasing.
</p>
<a href="sampling/" aria-label="Launch Sampling Theorem Visualizer"
>Launch Visualizer <span aria-hidden="true">→</span></a
>
</li>
</ul>
</nav>
</main>
</body>
</html>