diff --git a/write_utils.py b/write_utils.py
index a042e89..626fa8c 100644
--- a/write_utils.py
+++ b/write_utils.py
@@ -19,12 +19,13 @@ def get_html_header(refresh_rate=10):
header = ['',
'',
'
',
- ' ',
- ' ',
+ ' SurvBot status',
+ ' ',
+ ' ',
+ f' ',
+ ' ',
+ ' ',
'',
- f'',
- '',
- '',
'']
header = _convert_to_textstring(header)
return header
@@ -86,7 +87,7 @@ def get_html_row(items, html_key='td'):
html_class = item.get('html_class')
class_str = f' class="{html_class}"' if html_class else ''
row_string += 2 * default_space + f'<{html_key}{class_str} bgcolor="{color}" title="{tooltip}"' \
- + f'style="color:{font_color}"> {text_str}{html_key}>\n'
+ + f'style="color:{font_color}">{text_str}{html_key}>\n'
row_string += default_space + '\n'
return row_string