✍️Syntax
Quickly learn the simple phyal syntax to get started right away
html_content = str(
Tags.#element
)Tags.p('Hello, world!')Tags.a('Link').attr('href', 'https://google.com')Tags.p('Hello, world!').id('my_id')Tags.div().id('container').child(
Tags.h1('Title').id('title'),
# Add more children here if needed
)Last updated