-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Web Firm Framework edited this page Nov 2, 2019
·
28 revisions
wffweb is one of the modules of webfirmframework, is a light weight java framework which can be run on any low memory servers, read more in documentation...
Register in wff hub for template reference and more!. It's built by wffweb-3.x.x
check out this demo app deployed at https://wffweb.herokuapp.com
The below wff java code
Html rootTag = new Html(null).give(html -> {
new Head(html);
new Body(html).give(body -> {
new Div(body);
});
});
rootTag.setPrependDocType(true);
System.out.println(html.toHtmlString(true));
will generate
<!DOCTYPE html>
<html>
<head></head>
<body>
<div></div>
</body>
</html>
Refer wffweb-javadoc, Watch technical videos
Feel free to write us @ [email protected] for any assistance
or
[email protected] for any technical support.
webfirmframework.com since 2014