= Html(
page 'Some page')),
Head(Title('Some text, ', A('A link', href='https://example.com'), Img(src="https:/placehold.co/200"), cls='myclass')))
Body(Div(print(to_xml(page))
<html>
<head>
<title>Some page</title>
</head>
<body>
<div class="myclass">
Some text,
<a href="https://example.com">A link</a>
<img src="https:/placehold.co/200">
</div>
</body>
</html>