diff --git a/framework/h/tag.go b/framework/h/tag.go index 0bb2b23..9e62bb3 100644 --- a/framework/h/tag.go +++ b/framework/h/tag.go @@ -467,3 +467,11 @@ func TFoot(children ...Ren) *Element { func Abbr(children ...Ren) *Element { return Tag("abbr", children...) } + +func Title(children ...Ren) *Element { + return Tag("title", children...) +} + +func Br() *Element { + return Tag("br") +}