Spaces:
Sleeping
Sleeping
def load_css(): | |
with open('style.css', 'r', encoding='utf-8') as file: | |
css = file.read() | |
return f"<style>{css}</style>" | |
def load_css(): | |
with open('style.css', 'r', encoding='utf-8') as file: | |
css = file.read() | |
return f"<style>{css}</style>" | |