import streamlit as st st.title('Mi primer titulo') x = st.slider('Select a value') st.write(x, 'squared is', x * x) st.markdown('Texto')