Skip to content
Web Firm Framework edited this page Sep 16, 2016 · 28 revisions

Web Firm Framework

######module : wffweb wffweb is one of the modules of webfirmframework, read more...

This is a light weight framework which can be run on any low cost low memory servers.

The below wff java code

Html html = new Html(null) {{
	new Head(this);
	new Body(this) {{
		new Div(this);
	}};
}};
html.setPrependDocType(true);
System.out.println(html.toHtmlString());

will generate

<!DOCTYPE html>
<html>
 <head></head> 
 <body> 
  <div></div>  
 </body>
</html>

Check out this online tool provided in webfirmframework.com