import streamlit as st st.markdown("##Hello, people!") st.markdown("", unsafe_allow_html=True) x = st.slider('Select a value') st.write(x, 'squared is', x * x)