Writes text to the head section of a generated HTML page. It is useful for embedding JavaScript code, or putting other HTML tags, such as meta, link, title, or base in an HTML page header.
<cfhtmlhead text="">
cfhtmlhead() {}
Name | Type | Required | Default | Description |
---|---|---|---|---|
text | string | No | Text to add to the head area of an HTML page. In Lucee a closing tag can be used and then the body between the tags is added to the head |
<cfhtmlhead text='<link href="/news.xml" rel="alternate" type="application/rss+xml" title="Latest News" />'>
cfhtmlhead( text='<link href="/news.xml" rel="alternate" type="application/rss+xml" title="Latest News" />');
Lucee4.2+
htmlhead text='<link href="/news.xml" rel="alternate" type="application/rss+xml" title="Latest News" />';
Lucee tag wrap
<cfhtmlhead><link href="/news.xml" rel="alternate" type="application/rss+xml" title="Latest News" /></cfhtmlhead>