Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,40 @@
|
|
1 |
import streamlit as st
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
markdown_text = '''
|
4 |
## ๐พ Top Ten Animals and Wildlife in Iceland ๐ฎ๐ธ
|
5 |
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
st.markdown("""
|
4 |
+
|
5 |
+
## ๐ฆ Top Ten Types of Sharks in Iceland ๐ฎ๐ธ
|
6 |
+
|
7 |
+
| Rank | Emoji | Shark | Location | Images |
|
8 |
+
|------|-------|-----------------------|---------------------|----------------------------------------------|
|
9 |
+
| 1 | ๐ฆ | [Greenland Shark](https://www.google.com/search?q=greenland+shark+iceland+pictures) | Northern Coast | |
|
10 |
+
| 2 | ๐ฆ | [Basking Shark](https://www.google.com/search?q=basking+shark+iceland+pictures) | West Fjords | |
|
11 |
+
| 3 | ๐ฆ | [Porbeagle Shark](https://www.google.com/search?q=porbeagle+shark+iceland+pictures) | Reykjanes Peninsula | |
|
12 |
+
| 4 | ๐ฆ | [Blue Shark](https://www.google.com/search?q=blue+shark+iceland+pictures) | South Coast | |
|
13 |
+
| 5 | ๐ฆ | [Thresher Shark](https://www.google.com/search?q=thresher+shark+iceland+pictures) | Snaefellsnes Peninsula | |
|
14 |
+
| 6 | ๐ฆ | [Shortfin Mako Shark](https://www.google.com/search?q=shortfin+mako+shark+iceland+pictures) | West Coast | |
|
15 |
+
| 7 | ๐ฆ | [Spiny Dogfish](https://www.google.com/search?q=spiny+dogfish+iceland+pictures) | East Coast | |
|
16 |
+
| 8 | ๐ฆ | [Longnose Spurdog](https://www.google.com/search?q=longnose+spurdog+iceland+pictures) | East Fjords | |
|
17 |
+
| 9 | ๐ฆ | [Smooth Hammerhead](https://www.google.com/search?q=smooth+hammerhead+iceland+pictures) | North Coast | |
|
18 |
+
| 10 | ๐ฆ | [Angel Shark](https://www.google.com/search?q=angel+shark+iceland+pictures) | Reykjanes Peninsula | |
|
19 |
+
|
20 |
+
## ๐ Top Ten Types of Whales in Iceland ๐ฎ๐ธ
|
21 |
+
|
22 |
+
| Rank | Emoji | Whale | Location | Images |
|
23 |
+
|------|-------|-----------------------------|---------------------|----------------------------------------------|
|
24 |
+
| 1 | ๐ | [Humpback Whale](https://www.google.com/search?q=humpback+whale+iceland+pictures) | Northern Coast | |
|
25 |
+
| 2 | ๐ | [Minke Whale](https://www.google.com/search?q=minke+whale+iceland+pictures) | West Fjords | |
|
26 |
+
| 3 | ๐ | [Blue Whale](https://www.google.com/search?q=blue+whale+iceland+pictures) | Reykjanes Peninsula | |
|
27 |
+
| 4 | ๐ | [Orca or Killer Whale](https://www.google.com/search?q=orca+whale+iceland+pictures) | South Coast | |
|
28 |
+
| 5 | ๐ | [Sperm Whale](https://www.google.com/search?q=sperm+whale+iceland+pictures) | Snaefellsnes Peninsula | |
|
29 |
+
| 6 | ๐ | [Fin Whale](https://www.google.com/search?q=fin+whale+iceland+pictures) | West Coast | |
|
30 |
+
| 7 | ๐ | [Sei Whale](https://www.google.com/search?q=sei+whale+iceland+pictures) | East Coast | |
|
31 |
+
| 8 | ๐ | [North Atlantic Right Whale](https://www.google.com/search?q=north+atlantic+right+whale+iceland+pictures) | East Fjords | |
|
32 |
+
| 9 | ๐ | [Bryde's Whale](https://www.google.com/search?q=brydes+whale+iceland+pictures) | North Coast | |
|
33 |
+
| 10 | ๐ | [Gray Whale](https://www.google.com/search?q=gray+whale+iceland+pictures) | Reykjanes Peninsula | |
|
34 |
+
|
35 |
+
|
36 |
+
""")
|
37 |
+
|
38 |
markdown_text = '''
|
39 |
## ๐พ Top Ten Animals and Wildlife in Iceland ๐ฎ๐ธ
|
40 |
|