pyx/template.py
2025-08-21 11:53:23 -04:00

13 lines
174 B
Python

from pyx import DIV, H1, H2, P, SPAN, BR, IMG, A
print(
DIV
[
H1["Welcome!"],
A(css="www.site.com", href="www.site.com")
[
IMG(id="image.png")
]
]
)