Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,17 +1,19 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
#
|
4 |
-
def
|
5 |
-
|
|
|
6 |
|
7 |
-
#
|
8 |
-
|
9 |
-
st.write("Enter your name below to get a cute greeting!")
|
10 |
|
11 |
-
#
|
12 |
-
|
|
|
|
|
|
|
|
|
13 |
|
14 |
-
# Display the greeting if a name is entered
|
15 |
if name:
|
16 |
-
|
17 |
-
st.write(greeting)
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
# Load CSS
|
4 |
+
def load_css(file_name):
|
5 |
+
with open(file_name, "r") as f:
|
6 |
+
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
7 |
|
8 |
+
# Apply CSS
|
9 |
+
load_css("style.css")
|
|
|
10 |
|
11 |
+
# Streamlit UI
|
12 |
+
st.title("🌸 Cute Greeting App 🌸")
|
13 |
+
st.write("Enter your name below for a special greeting!")
|
14 |
+
|
15 |
+
# Input field for name
|
16 |
+
name = st.text_input("Your Name:")
|
17 |
|
|
|
18 |
if name:
|
19 |
+
st.subheader(f"✨ Hi, {name}! You're amazing! ✨")
|
|