Getting started with j2htmlImport TagCreator to get started. j2html's syntax is fluent and closely matched to HTML: import static j2html.TagCreator.*; public class Main { public static void main(String[] args) { body( h1("Hello, World!"), img().withSrc("/img/hello.png") ).render(); } } The Java code above becomes the HTML below: <body> <h1>Hello, World!</h1> <img src="/img/hello.png"> </body> Chec