awacke1 commited on
Commit
fa6942b
1 Parent(s): 90f882d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -0
app.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ markdown_text = '''
4
+ ## 🍽️ Top Ten Foods and Drinks in Iceland 🇮🇸
5
+
6
+ 1. [🐟 Hákarl](https://www.google.com/search?q=hákarl+pictures) - Fermented shark, a traditional Icelandic delicacy with a distinct smell and taste.
7
+ 2. [🥩 Hangikjöt](https://www.google.com/search?q=hangikjöt+pictures) - Smoked lamb often enjoyed during festive occasions, such as Christmas.
8
+ 3. [🥣 Skyr](https://www.google.com/search?q=skyr+pictures) - A creamy, high-protein dairy product similar to yogurt, typically served with fruit or as a dessert.
9
+ 4. [🍞 Rúgbrauð](https://www.google.com/search?q=rúgbrauð+pictures) - Icelandic dark rye bread, traditionally baked using geothermal heat from the ground.
10
+ 5. [🌭 Pylsur](https://www.google.com/search?q=icelandic+hot+dog+pictures) - Icelandic hot dog made from a mix of lamb, beef, and pork, served with various toppings.
11
+ 6. [🐑 Kjötsúpa](https://www.google.com/search?q=kjötsúpa+pictures) - A traditional Icelandic lamb soup, perfect for warming up during cold weather.
12
+ 7. [🍲 Plokkfiskur](https://www.google.com/search?q=plokkfiskur+pictures) - A comforting fish stew made with potatoes, onions, and white sauce.
13
+ 8. [🍻 Brennivín](https://www.google.com/search?q=brennivín+pictures) - A potent Icelandic schnapps, also known as "Black Death", commonly consumed during special occasions.
14
+ 9. [🍩 Kleinur](https://www.google.com/search?q=kleinur+pictures) - Icelandic twisted doughnuts, a delicious sweet treat enjoyed with coffee.
15
+ 10. [🥔 Fish and Chips](https://www.google.com/search?q=iceland+fish+and+chips+pictures) - A popular dish featuring fresh Icelandic fish, often served with crispy fries and tartar sauce.
16
+
17
+ '''
18
+
19
+ st.markdown(markdown_text)