pyx/template.py
2025-08-15 16:16:47 -04:00

17 lines
224 B
Python

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