head package:blaze-html

Combinator for the <head> element. Example:
head $ span $ toHtml "foo"
Result:
<head><span>foo</span></head>
Combinator for the headers attribute. Example:
div ! headers "bar" $ "Hello."
Result:
<div headers="bar">Hello.</div>
Combinator for the <header> element. Example:
header $ span $ toHtml "foo"
Result:
<header><span>foo</span></header>
Combinator for the <thead> element. Example:
thead $ span $ toHtml "foo"
Result:
<thead><span>foo</span></thead>