diff --git a/menu/menu.js b/menu/menu.js index bc1914a..8cf9a46 100644 --- a/menu/menu.js +++ b/menu/menu.js @@ -30,6 +30,7 @@ var sites = [ ["/MTG/", "MTG"], ["/youtube_convert/", "Youtube Converter"], ["/binary/", "Binary Converter"], + ["/speak/", "Speak"], ["/nato/", "NATO Phonetic Alphabet"], ["/rollDice", "Dice"], ["/be_mine/", "Be Mine!"], diff --git a/nato/style.css b/nato/style.css index d253b38..0fef5fd 100644 --- a/nato/style.css +++ b/nato/style.css @@ -12,6 +12,7 @@ h1{ text-align: center; font-family: cursive; color: whitesmoke; + margin: 15px; } .button{ display: flex; diff --git a/speech/Test.html b/speech/Test.html deleted file mode 100644 index 8664900..0000000 --- a/speech/Test.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - Document - - - - -
- - -

-
- - - \ No newline at end of file diff --git a/speech/Test.js b/speech/Test.js deleted file mode 100644 index 84b2dc6..0000000 --- a/speech/Test.js +++ /dev/null @@ -1,28 +0,0 @@ - -if ('speechSynthesis' in window) { - // -}else{ - alert('error') -} -let num = 1; -// alert("test"); -var msg = new SpeechSynthesisUtterance(); -var voices = window.speechSynthesis.getVoices(); -// msg.voice = voices[01]; -msg.volume = 1; -// From 0 to 1 -msg.rate = 1; -// From 0.1 to 10 -msg.pitch = 0; -// From 0 to 2 -msg.text = num; -msg.lang = 'en'; -// -function test(){ -document.getElementById("out").onclick = ""; -document.getElementById("out").innerHTML = num; -msg.text = num; - speechSynthesis.speak(msg); - num= num+1; - document.getElementById("out").onclick = "out()"; -} \ No newline at end of file diff --git a/speech/style.css b/speech/style.css deleted file mode 100644 index 514ed8c..0000000 --- a/speech/style.css +++ /dev/null @@ -1,29 +0,0 @@ -.container{ - display: flex; - flex-direction: column; - justify-items: center; - align-items: center; - background-color: cornflowerblue; - padding: 20px; - height: 100%; - -} -body{ - box-sizing: border-box; - margin: 0; - background-color: cornflowerblue; -} -#btn{ - color: blueviolet; - background-color: pink; - height: 200px; - width: 200px; - font-size: 4rem; - border-radius: 50%; - border: none; - font-family: Verdana, Geneva, Tahoma, sans-serif; - -} -h1{ - font-size: 7rem; -} \ No newline at end of file