about summary refs log tree commit diff stats
path: root/html/elements.go
diff options
context:
space:
mode:
Diffstat (limited to 'html/elements.go')
-rw-r--r--html/elements.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/html/elements.go b/html/elements.go
index 918f6bd..79db67f 100644
--- a/html/elements.go
+++ b/html/elements.go
@@ -426,3 +426,7 @@ func U(children ...g.Node) g.Node {
 func Var(children ...g.Node) g.Node {
 	return g.El("var", g.Group(children))
 }
+
+func Video(children ...g.Node) g.Node {
+	return g.El("video", g.Group(children))
+}