diff options
| author | ilotterytea <iltsu@alright.party> | 2024-06-16 13:37:52 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-06-16 13:37:52 +0500 |
| commit | a21b928df05dae26635ede929aec508392646025 (patch) | |
| tree | b652ddf5e0d2e06fcd41d969b3ab50591ecd0b47 | |
| parent | 6014ce1bcffa14111dbb00f5b143510d753dc5a1 (diff) | |
feat: html file for showing the image in a separate tab
| -rw-r--r-- | index.html | 2 | ||||
| -rw-r--r-- | show.html | 10 |
2 files changed, 11 insertions, 1 deletions
@@ -22,7 +22,7 @@ <p id="volume">0 dB</p> </div> <div class="control"> - <a href="/display" class="button">show in a separate tab</a> + <a href="show.html" class="button">show in a separate tab</a> </div> </div> </div> diff --git a/show.html b/show.html new file mode 100644 index 0000000..80323d7 --- /dev/null +++ b/show.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> + <head> + <link rel="stylesheet" href="style.css"> + </head> + <body> + <img src="#" alt="no image" id="preview"> + </body> + <script src="scripts/microphone.js"></script> +</html>
\ No newline at end of file |
