File size: 2,642 Bytes
2c2f647
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
362e88d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import streamlit as st

def main():
    st.title("Dromedary Species FAQ πŸͺ")
    
    st.markdown("""
    ## Table of Contents
    1. [Introduction](#introduction)
    2. [Physical Characteristics](#physical-characteristics)
    3. [Habitat](#habitat)
    4. [Diet](#diet)
    5. [Unique Features](#unique-features) 🌟
    6. [Blood Cell Biology](#blood-cell-biology) πŸ’‰
    7. [FAQs](#faqs) ❓
    8. [Further Reading](#further-reading) πŸ“š
    9. [References](#references) πŸ“
    """)

    st.markdown("## 1. Introduction <a name='introduction'></a>")
    st.markdown("""
    1.1. What is a Dromedary? πŸͺ  
    A dromedary is a species of camel with a single hump.
    
    1.2. Where are they commonly found? 🌍  
    They are commonly found in the Middle East, North Africa, and South Asia.
    """)

    # ... and so on for other sections

    st.markdown("## 5. Unique Features 🌟 <a name='unique-features'></a>")
    st.markdown("""
    5.1. Single Hump πŸͺ  
    The single hump stores fat, which can be converted to water and energy.
    
    5.2. Specialized Feet 🦢  
    Broad, flat feet for walking long distances in sand.
    
    5.3. Long Eyelashes and Nostrils πŸ‘€  
    Adapted to keep out sand and dust.
    
    5.4. Temperature Regulation 🌑️  
    Can withstand high body temperatures to reduce sweating and conserve water.
    """)

    st.markdown("## 6. Blood Cell Biology πŸ’‰ <a name='blood-cell-biology'></a>")
    st.markdown("""
    ### 6.1. Overview of Blood Cells
    6.1.1. Role in water storage πŸ’§  
    The blood cells in dromedaries have adapted to store water efficiently.
    
    6.1.2. Cell shape and size 🟠  
    The cells are oval and smaller compared to other mammals to maximize surface area to volume ratio.
    
    ### 6.2. Red Blood Cells
    6.2.1. Unique shape 🟠  
    Oval-shaped to increase surface area.
    
    6.2.2. Oxygen-carrying capacity 🌬️  
    High hemoglobin content for efficient oxygen transport.
    
    # ... and so on for other sub-sections
    """)

    st.markdown("## 7. FAQs ❓ <a name='faqs'></a>")
    st.markdown("""
    7.1. How do Dromedaries survive without water? 🌡  
    Their blood cell biology allows them to store water efficiently.
    
    7.2. Are they domesticated or wild? 🏠  
    Both. Some are domesticated for transportation and carrying goods, while some are wild.
    
    7.3. What's the difference between a Dromedary and a Bactrian camel? πŸ€”  
    A Dromedary has one hump, while a Bactrian camel has two.
    """)

    # ... and so on for other sections
    
if __name__ == '__main__':
    main()