(title)
| 73 | TAIL = "</body>\n</html>" |
| 74 | |
| 75 | def h1(title): return f"<h1>{title}</h1>\n" |
| 76 | def h2(title): return f"<h2>{title}</h2>\n" |
| 77 | def h2withId(title, sectionId): return f"<h2 id={sectionId}>{title}</h2>\n" |
| 78 | def p(text, size="16px"): return f'<p style="font-size:{size}; font-weight:normal">{text}</p>\n' |