Hi all!
Using the following code snippet the title of the web page does not get
rendered in the browser title bar as expected but at the top of the page! Could
someone please give some suggestions about what may went wrong in this approach?
Thanks in advance,
Jan
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<f:view>
<f:loadBundle basename="de.fhg.ict.resource.pagelabels" var="msg" />
<t:htmlTag value="html">
<t:documentHead>
<t:stylesheet id="design"
path="/css/pagedesign.css"></t:stylesheet>
<t:stylesheet id="layout"
path="/css/pagelayout.css"></t:stylesheet>
<t:htmlTag value="title">
<h:outputText id="pagetitle"
value="#{msg.fieldset_project}"></h:outputText>
</t:htmlTag>
</t:documentHead>
<t:documentBody>
<h:form>
...
...
</h:form>
<t:documentBody>
</t:htmlTag>
</f:view>