The css tag is a Single Tag. This tag is used in the header of your document, where it will output the URL of the style sheet assigned in the Sections Subtab.
<txp:css />
Tag will accept the following attributes (case-sensitive):
Link to specified style.
How to format output: either return complete (X)HTML link tag with necessary (X)HTML attributes, or only the StyleSheet's URL. Available values are link or url. Default is url.
(X)HTML rel attribute to be applied to link tag (when invoked with format=“link”). Default is stylesheet.
(X)HTML media attribute to be applied to link tag (when invoked with format=“link”). Default is screen.
(X)HTML title attribute to be applied to link tag (when invoked with format=“link”). Default is unset.
<head> <!-- ...tags... --> <txp:css /> <!-- ...more tags... --> </head>
<head> <!-- ...tags... --> <txp:css n="style_name" /> <!-- ...more tags... --> </head>
<head> <!-- ...tags... --> <txp:css n="plain" rel="alternate" title="Plain and Simple Style" /> <txp:css n="glossy" rel="alternate" title="Glossy Style"/> <txp:css n="print" media="print" /> <!-- ...more tags... --> </head>