awacke1 commited on
Commit
d7eabd6
β€’
1 Parent(s): 16c43ec

Create Three Dragons by Aaron Wacker.txt

Browse files
Files changed (1) hide show
  1. Three Dragons by Aaron Wacker.txt +39 -0
Three Dragons by Aaron Wacker.txt ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ # Title for the app
4
+ st.title('πŸ‰ Mythical Dragons from Around the World 🌍')
5
+
6
+ # Introduction text
7
+ st.markdown("""
8
+ In the realm of mythology, dragons are among the most captivating and diverse creatures.
9
+ Let's explore the tales of three legendary dragons from different cultures.
10
+ """)
11
+
12
+ # Dragon 1: Fafnir (Norse Mythology)
13
+ st.subheader('Fafnir 🐲 - Norse Mythology')
14
+ st.markdown("""
15
+ - **Origin**: Norse Mythology
16
+ - **Story**: Fafnir was originally a dwarf, transformed into a fierce dragon due to his greed for the treasure he guarded. He was later slain by the hero Sigurd.
17
+ - **Significance**: Fafnir represents the deadly sin of greed and the corrupting power of wealth.
18
+ """)
19
+
20
+ # Dragon 2: Quetzalcoatl (Aztec Mythology)
21
+ st.subheader('Quetzalcoatl 🌬️ - Aztec Mythology')
22
+ st.markdown("""
23
+ - **Origin**: Aztec Mythology
24
+ - **Story**: Quetzalcoatl, the 'Feathered Serpent', is not a dragon in the traditional sense but shares many similarities. He was a deity representing wind, air, and learning.
25
+ - **Significance**: Quetzalcoatl was a creator god and a symbol of death and rebirth.
26
+ """)
27
+
28
+ # Dragon 3: Tiamat (Mesopotamian Mythology)
29
+ st.subheader('Tiamat 🌊 - Mesopotamian Mythology')
30
+ st.markdown("""
31
+ - **Origin**: Mesopotamian Mythology
32
+ - **Story**: Tiamat, a primordial goddess of the ocean, turned into a dragon-like creature in a battle against her children who threatened her authority.
33
+ - **Significance**: Tiamat embodies the chaos of primordial creation and is often associated with the forces of nature.
34
+ """)
35
+
36
+ # Conclusion
37
+ st.markdown("""
38
+ Dragons, with their diverse interpretations and stories, capture our imagination and reveal much about the cultures they come from.
39
+ """)