Writes a single META tag with name and content attributes. @param name the name attribute. @param content the content attribute. @return this writer. @see #tag(String, Attribute...)
(String name, String content)
| 858 | * @see #tag(String, Attribute...) |
| 859 | */ |
| 860 | public HTMLWriter meta(String name, String content) |
| 861 | { |
| 862 | return tag("meta", name(name), attribute("content", content)); |
| 863 | } |
| 864 | |
| 865 | /** |
| 866 | * Writes a single LINK tag with "stylesheet" relationship and an HREF to the resource. |