JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="speechthing" value="How" />
<button onclick="helloWorld();">Speak!</button>
<div id="speechrenderer"></div>
JavaScript
function helloWorld() {
document.getElementById('speechrenderer').innerHTML = "<iframe src='http://translate.google.com/translate_tts?tl=en&q=" + document.getElementById('speechthing').value + "'></iframe>";
}