about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--html/elements.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/html/elements.go b/html/elements.go
index ad3f19f..9afd7ea 100644
--- a/html/elements.go
+++ b/html/elements.go
@@ -416,6 +416,10 @@ func S(children ...g.Node) g.Node {
 	return g.El("s", g.Group(children))
 }
 
+func Search(children ...g.Node) g.Node {
+	return g.El("search", g.Group(children))
+}
+
 func Samp(children ...g.Node) g.Node {
 	return g.El("samp", g.Group(children))
 }