17 lines
224 B
Python
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")
|
|
]
|
|
]
|
|
)
|