usingh49 commited on
Commit
ada6ab6
·
1 Parent(s): b6e64e5

Create new file

Browse files
Files changed (1) hide show
  1. app.py +20 -0
app.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ def head():
2
+ st.markdown("""
3
+ <h1 style='text-align: center; margin-bottom: -35px;'>
4
+ Math Problem Generator
5
+ </h1>
6
+ """, unsafe_allow_html=True
7
+ )
8
+
9
+ st.caption("""
10
+ <p style='text-align: center'>
11
+ by <a href='https://medium.com/geoclid'>Geoclid</a>
12
+ </p>
13
+ """, unsafe_allow_html=True
14
+ )
15
+
16
+ st.write(
17
+ "Feeling overwhelmed by your daily grind?",
18
+ "Looking for something fun to do?",
19
+ "Click the button for a random math problem \U0001F642."
20
+ )