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