ivan-savchuk commited on
Commit
2e2bd12
β€’
1 Parent(s): dfa96a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -56,7 +56,14 @@ if __name__ == "__main__":
56
  # get instance of DocumentSearch class
57
  surfer = DocumentSearch()
58
  # streamlit part starts here with title
59
- st.markdown("<h1 style='text-align: center'>Medical Search</h1>", unsafe_allow_html=True)
 
 
 
 
 
 
 
60
  # input form
61
  with st.form("my_form"):
62
  # here we have input space
 
56
  # get instance of DocumentSearch class
57
  surfer = DocumentSearch()
58
  # streamlit part starts here with title
59
+ title = """
60
+ <h1 style='
61
+ text-align: center;
62
+ color: #3CB371'>
63
+ Medical Search
64
+ </h1>
65
+ """
66
+ st.markdown(title, unsafe_allow_html=True)
67
  # input form
68
  with st.form("my_form"):
69
  # here we have input space