add a few missing tags

This commit is contained in:
maddalax 2024-09-27 15:57:11 -05:00
parent 61a9d8e80f
commit 0f04094533

View file

@ -467,3 +467,11 @@ func TFoot(children ...Ren) *Element {
func Abbr(children ...Ren) *Element { func Abbr(children ...Ren) *Element {
return Tag("abbr", children...) return Tag("abbr", children...)
} }
func Title(children ...Ren) *Element {
return Tag("title", children...)
}
func Br() *Element {
return Tag("br")
}