Writes a single LINK tag with "stylesheet" relationship and an HREF to the resource. @param resourcePath the URI/URL to the style sheet. @return this writer. @see #tag(String, Attribute...)
(String resourcePath)
| 869 | * @see #tag(String, Attribute...) |
| 870 | */ |
| 871 | public HTMLWriter css(String resourcePath) |
| 872 | { |
| 873 | return tag("link", rel("stylesheet"), href(resourcePath)); |
| 874 | } |
| 875 | |
| 876 | /** |
| 877 | * Writes an empty script element with type "text/javascript" and a "src" path to the script resource. |