prashant
commited on
Commit
•
6491a9c
1
Parent(s):
ede3b05
info heading fix
Browse files- appStore/info.py +3 -2
appStore/info.py
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
def app():
|
|
|
|
|
|
|
4 |
|
5 |
with open('style.css') as f:
|
6 |
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
@@ -16,8 +19,6 @@ def app():
|
|
16 |
"""
|
17 |
st.markdown(footer, unsafe_allow_html=True)
|
18 |
|
19 |
-
st.header("<h1 style='text-align: center; \
|
20 |
-
color: black;'> Policy Action Tracker Manual</h1>")
|
21 |
intro = """
|
22 |
<div class="text">
|
23 |
The manual extraction of relevant information from text documents is a \
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
def app():
|
4 |
+
st.markdown("<h1 style='text-align: center; \
|
5 |
+
color: black;'> Policy Action Tracker Manual</h1>",
|
6 |
+
unsafe_allow_html=True)
|
7 |
|
8 |
with open('style.css') as f:
|
9 |
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
|
|
19 |
"""
|
20 |
st.markdown(footer, unsafe_allow_html=True)
|
21 |
|
|
|
|
|
22 |
intro = """
|
23 |
<div class="text">
|
24 |
The manual extraction of relevant information from text documents is a \
|