import streamlit as st html_code = """
Name Age City
Alice 25 New York
Bob 30 San Francisco
""" st.markdown(html_code, unsafe_allow_html=True)