Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,15 @@ add_slider = st.sidebar.slider(
|
|
11 |
'Select a range of values',
|
12 |
0.0, 100.0, (25.0, 75.0)
|
13 |
)
|
14 |
-
st.
|
15 |
-
st.
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
'Select a range of values',
|
12 |
0.0, 100.0, (25.0, 75.0)
|
13 |
)
|
14 |
+
with st.container():
|
15 |
+
st.write("This is inside the container")
|
16 |
+
col1, col2, col3 = st.columns(3)
|
17 |
+
with col1:
|
18 |
+
st.header("A cat")
|
19 |
+
st.audio("goodres.wav", format="audio/mpeg", loop=False)
|
20 |
+
with col2
|
21 |
+
st.header("a dog")
|
22 |
+
st.audio("goodres.wav", format="audio/mpeg", loop=False)
|
23 |
+
with col3
|
24 |
+
st.header("a pumpkin")
|
25 |
+
st.audio("goodres.wav", format="audio/mpeg", loop=False)
|