import streamlit as st st.title("🔊 Read It Aloud") text = st.text_area("Type the text you want to be read aloud here.", "Hello, world!") read_aloud_js = """ """ st.markdown(read_aloud_js, unsafe_allow_html=True)