I've seen at least 3 different location for <f:view> as shown below. Is there any concensus on this? Any insite or reasoning for a choice?
STYLE 1) JSF In Action
----------------------
<f:view>
<html>
...
</html>
</f:view>
STYLE 2) Core JSF
-----------------
<html>
<f:view>
<head>
...
</head>
<body>
...
</body>
</f:view>
</html>
STYLE 3) Mastering JSF
----------------------
<html>
<head>
...
</head>
<body>
<f:view>
...
</f:view>
</body>
</html>
Greg

