import streamlit as st def local_css(css_path): with open(css_path) as f: st.markdown(f'', unsafe_allow_html=True) def remote_css(css_url): st.markdown(f'', unsafe_allow_html=True)