Update BasicExample.java

This commit is contained in:
David
2015-04-25 15:57:21 +02:00
parent e4c89538c8
commit 3b606e4d12

View File

@@ -1,12 +1,12 @@
//Java Code
html().with(
head().with(
title().withText("Title"),
title("Title"),
link().withRel("stylesheet").withHref("/css/main.css")
),
body().with(
main().with(
h1().withText("Heading!")
h1("Heading!")
)
)
).render();
@@ -24,4 +24,4 @@ html().with(
</main>
</body>
<html>
*/
*/