fschwartzer commited on
Commit
6101699
1 Parent(s): c86d904

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -5
app.py CHANGED
@@ -113,11 +113,17 @@ zoom_level = 13
113
 
114
  font_url = "https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap"
115
 
116
- title_html = """
117
- <span style='color: #566f71; font-size: 50px;'>aval</span>
118
- <span style='color: #edb600; font-size: 50px;'>ia</span>
119
- <span style='color: #566f71; font-size: 50px;'>.se</span>
120
- """
 
 
 
 
 
 
121
 
122
  # Create a sidebar for controls
123
  with st.sidebar:
 
113
 
114
  font_url = "https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap"
115
 
116
+ title_html = f"""
117
+ <style>
118
+ @import url('{font_url}');
119
+ h1 {{
120
+ font-family: 'Quicksand', sans-serif;
121
+ }}
122
+ </style>
123
+ <span style='color: #566f71; font-size: 50px;'>aval</span>
124
+ <span style='color: #edb600; font-size: 50px;'>ia</span>
125
+ <span style='color: #566f71; font-size: 50px;'>.se</span>
126
+ """
127
 
128
  # Create a sidebar for controls
129
  with st.sidebar: