import streamlit as st import requests st.set_page_config(page_title="") st.title("") # Fetch a random fact from the API response = requests.get("https://uselessfacts.jsph.pl/random.json?language=en") fact = response.json()["text"] # Center the title and fact col1, col2, col3 = st.columns([1, 10, 1]) with col2: st.write(f"
{fact}
", unsafe_allow_html=True)