diff --git a/web/CXM_making_a_web_site.anubis b/web/CXM_making_a_web_site.anubis
index 639bec8..242dc7f 100644
--- a/web/CXM_making_a_web_site.anubis
+++ b/web/CXM_making_a_web_site.anubis
@@ -1747,6 +1747,8 @@ public define HTML_Off_Form strong(HTML_Off_Form content)
//
public define HTML_Off_Form ul(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("ul", attrs, content).
public define HTML_Off_Form ul(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("ul", attrs, [content]).
+public define HTML_Off_Form ul(CoreAttrs attr, List(HTML_Off_Form) content) = html_tag("ul", [attr], content).
+public define HTML_Off_Form ul(CoreAttrs attr, HTML_Off_Form content) = html_tag("ul", [attr], [content]).
public define HTML_Off_Form ul(List(HTML_Off_Form) content) = html_tag("ul", [], content).
public define HTML_Off_Form ul(HTML_Off_Form content) = html_tag("ul", [], [content]).
--
libgit2 0.21.4