Spaces:
Sleeping
Sleeping
rameshmoorthy
commited on
Commit
•
413bc5c
1
Parent(s):
173615b
Update home.py
Browse files
home.py
CHANGED
@@ -8,13 +8,19 @@ def home():
|
|
8 |
font-size: 30px;
|
9 |
}
|
10 |
</style>
|
11 |
-
|
12 |
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
14 |
<h1 class="title">AI NANBAN</h1>
|
15 |
<p>A AI Personalised Coach application for CBSE Classs using face recognition.</p>
|
16 |
-
|
17 |
-
|
|
|
18 |
<h2>Features</h2>
|
19 |
<ul>
|
20 |
<li>Face detection and recognition of Students</li>
|
@@ -22,4 +28,8 @@ def home():
|
|
22 |
<li>Personalised Score tracking of students for progress tracking</li>
|
23 |
</ul>
|
24 |
<p>An Initiative by Koodapakkam school, Suggestions are Welcome to email id</p>
|
25 |
-
|
|
|
|
|
|
|
|
|
|
8 |
font-size: 30px;
|
9 |
}
|
10 |
</style>
|
11 |
+
""", unsafe_allow_html=True)
|
12 |
|
13 |
+
# Load GIF image from a trusted source
|
14 |
+
gif_url = "https://articleft.com/wp-content/uploads/2023/06/040823_chatgpt_feat.gif"
|
15 |
+
st.image(gif_url, width=400) # Adjust width as needed
|
16 |
+
|
17 |
+
# Split markdown for separate rendering
|
18 |
+
intro_text = """
|
19 |
<h1 class="title">AI NANBAN</h1>
|
20 |
<p>A AI Personalised Coach application for CBSE Classs using face recognition.</p>
|
21 |
+
"""
|
22 |
+
|
23 |
+
features_text = """
|
24 |
<h2>Features</h2>
|
25 |
<ul>
|
26 |
<li>Face detection and recognition of Students</li>
|
|
|
28 |
<li>Personalised Score tracking of students for progress tracking</li>
|
29 |
</ul>
|
30 |
<p>An Initiative by Koodapakkam school, Suggestions are Welcome to email id</p>
|
31 |
+
"""
|
32 |
+
|
33 |
+
st.markdown(intro_text, unsafe_allow_html=True)
|
34 |
+
st.markdown("""<h2>Introduction</h2>""", unsafe_allow_html=True)
|
35 |
+
st.markdown(features_text, unsafe_allow_html=True)
|