diff options
| author | Yuval Adam <_@yuv.al> | 2025-03-03 13:42:57 +0100 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-03-03 13:42:57 +0100 |
| commit | f28c7a3be0fa7d906e5fbb41d597213d335b07a3 (patch) | |
| tree | 0f23b8593774299e0709ce8c8404559e2e5529fc /index.html | |
| parent | aaccc24c8c94b293c179651d3e7589d7fef6ed46 (diff) | |
Add morse chart
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -379,6 +379,22 @@ vertical-align: middle; cursor: pointer; } + + .chart-link { + margin-top: 20px; + font-size: 18px; + } + + .chart-link a { + color: #3498db; + text-decoration: none; + transition: color 0.3s; + } + + .chart-link a:hover { + color: #f39c12; + text-decoration: underline; + } </style> </head> @@ -389,6 +405,9 @@ <div id="startScreen"> <p>Learn Morse code the fun way! Listen to the sound and pick the correct character.</p> <button id="startButton" class="start-button">Start Game</button> + <div class="chart-link"> + <a href="/chart.html">View Morse Code Chart</a> + </div> </div> <div id="gameArea"> |
