Prakash N commited on
Commit
d240045
1 Parent(s): 2ce732a

added columns

Browse files
Files changed (1) hide show
  1. app.py +10 -2
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import streamlit as st
2
 
3
  st.markdown(""" <style> .font {
4
- font-size:70px ; font-family: "Helvetica"; color: #FF9633;}
5
  </style> """, unsafe_allow_html=True)
6
 
7
  st.markdown('<p class="font">Now anyone can be a content marketer!</p>', unsafe_allow_html=True)
@@ -22,7 +22,15 @@ st.markdown(""" #### LorSor helps you through a simple 3 stage process.
22
 
23
  Kick back and think about what you're going to do with all the time that you've saved!
24
 
25
- Send any feedback to [[email protected]] """)
26
 
 
 
 
 
27
  x = st.slider('Select a value')
28
  st.write(x, ' squared is', x * x)
 
 
 
 
 
1
  import streamlit as st
2
 
3
  st.markdown(""" <style> .font {
4
+ font-size:50px ; font-family: "Helvetica"; color: #FF9633;}
5
  </style> """, unsafe_allow_html=True)
6
 
7
  st.markdown('<p class="font">Now anyone can be a content marketer!</p>', unsafe_allow_html=True)
 
22
 
23
  Kick back and think about what you're going to do with all the time that you've saved!
24
 
25
+ Send any feedback to [us]([email protected]) """)
26
 
27
+
28
+ col1, col2 = st.columns(2)
29
+
30
+ col1.write("This is col1")
31
  x = st.slider('Select a value')
32
  st.write(x, ' squared is', x * x)
33
+
34
+ col2.write("This is col2")
35
+
36
+