13 lines
174 B
Python
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")
|
|
]
|
|
]
|
|
)
|