Spaces:
Runtime error
Runtime error
Prakash N
commited on
Commit
·
fdd79a3
1
Parent(s):
122cbad
modified subheader
Browse files
app.py
CHANGED
@@ -1,27 +1,26 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
st.markdown(""" <style> .font {
|
4 |
-
font-size:
|
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)
|
8 |
|
9 |
st.subheader("Don't you wish there was a faster way to summarise your news articles and share it up onto your favourite social media platforms.")
|
10 |
|
11 |
-
st.markdown("""
|
12 |
|
13 |
-
|
14 |
-
|
15 |
|
16 |
-
|
17 |
|
18 |
-
|
19 |
-
|
20 |
|
21 |
-
|
22 |
|
23 |
-
|
24 |
-
""")
|
25 |
|
26 |
x = st.slider('Select a value')
|
27 |
st.write(x, ' squared is', x * x)
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
st.markdown(""" <style> .font {
|
4 |
+
font-size:70px ; font-family: 'Cooper Black'; 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)
|
8 |
|
9 |
st.subheader("Don't you wish there was a faster way to summarise your news articles and share it up onto your favourite social media platforms.")
|
10 |
|
11 |
+
st.markdown(""" ##### LorSor helps you through a simple 3 stage process.
|
12 |
|
13 |
+
Step 1: Copy and paste the complete article text in here
|
14 |
+
(*Coming soon* - Just paste the article URL)
|
15 |
|
16 |
+
Step 2: Evaluate the generated summary and make minor edits as required
|
17 |
|
18 |
+
Step 3: Copy and paste the summary when posting the article link to your social media
|
19 |
+
(*Coming soon* - Login to social media and schedule your post and we'll automate the process)
|
20 |
|
21 |
+
Kick back and think about what you're going to do with all the time that you've saved!
|
22 |
|
23 |
+
Send any feedback to [email protected] """)
|
|
|
24 |
|
25 |
x = st.slider('Select a value')
|
26 |
st.write(x, ' squared is', x * x)
|