Spaces:
Sleeping
Sleeping
File size: 445 Bytes
e427796 bcf9fc0 15d12fd e18dc18 15d12fd 9168941 15d12fd 7c6b19a e427796 15d12fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import streamlit as st
# Load CSS
def load_css(file_name):
with open(file_name, "r") as f:
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
# Apply CSS
load_css("style.css")
# Streamlit UI
st.title("🌸 Cute Greeting App 🌸")
st.write("Enter your name below for a special greeting!")
# Input field for name
name = st.text_input("Your Name:")
if name:
st.subheader(f"✨ Hi, {name}! You're amazing! ✨")
|