import textwrap
def print_html_head(title, style=None):
print(textwrap.dedent(f"""\
{title}"""))
if style:
print(textwrap.dedent(f"""\
"""))
print(textwrap.dedent("""\
"""))
def print_html_tail():
print(textwrap.dedent("""\
copyleft (c) 2024-2025 Suleyman Farajli
"""))