Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
def main():
|
4 |
+
st.title("Dromedary Species FAQ πͺ")
|
5 |
+
|
6 |
+
st.markdown("""
|
7 |
+
## Table of Contents
|
8 |
+
1. [Introduction](#introduction)
|
9 |
+
2. [Physical Characteristics](#physical-characteristics)
|
10 |
+
3. [Habitat](#habitat)
|
11 |
+
4. [Diet](#diet)
|
12 |
+
5. [Unique Features](#unique-features) π
|
13 |
+
6. [Blood Cell Biology](#blood-cell-biology) π
|
14 |
+
7. [FAQs](#faqs) β
|
15 |
+
8. [Further Reading](#further-reading) π
|
16 |
+
9. [References](#references) π
|
17 |
+
""")
|
18 |
+
|
19 |
+
st.markdown("## 1. Introduction <a name='introduction'></a>")
|
20 |
+
st.markdown("""
|
21 |
+
1.1. What is a Dromedary? πͺ
|
22 |
+
A dromedary is a species of camel with a single hump.
|
23 |
+
|
24 |
+
1.2. Where are they commonly found? π
|
25 |
+
They are commonly found in the Middle East, North Africa, and South Asia.
|
26 |
+
""")
|
27 |
+
|
28 |
+
# ... and so on for other sections
|
29 |
+
|
30 |
+
st.markdown("## 5. Unique Features π <a name='unique-features'></a>")
|
31 |
+
st.markdown("""
|
32 |
+
5.1. Single Hump πͺ
|
33 |
+
The single hump stores fat, which can be converted to water and energy.
|
34 |
+
|
35 |
+
5.2. Specialized Feet π¦Ά
|
36 |
+
Broad, flat feet for walking long distances in sand.
|
37 |
+
|
38 |
+
5.3. Long Eyelashes and Nostrils π
|
39 |
+
Adapted to keep out sand and dust.
|
40 |
+
|
41 |
+
5.4. Temperature Regulation π‘οΈ
|
42 |
+
Can withstand high body temperatures to reduce sweating and conserve water.
|
43 |
+
""")
|
44 |
+
|
45 |
+
st.markdown("## 6. Blood Cell Biology
|