summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-06-16 13:37:52 +0500
committerilotterytea <iltsu@alright.party>2024-06-16 13:37:52 +0500
commita21b928df05dae26635ede929aec508392646025 (patch)
treeb652ddf5e0d2e06fcd41d969b3ab50591ecd0b47
parent6014ce1bcffa14111dbb00f5b143510d753dc5a1 (diff)
feat: html file for showing the image in a separate tab
-rw-r--r--index.html2
-rw-r--r--show.html10
2 files changed, 11 insertions, 1 deletions
diff --git a/index.html b/index.html
index 85e6830..09777ec 100644
--- a/index.html
+++ b/index.html
@@ -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