| Previous | Next
Associating Stylesheets with XML DocumentsCSS stylesheets are primarily intended for use in web pages. Web browsers find the stylesheet for a document by looking for <?xml-stylesheet href="recipe.css"?> Including the required
For example, this group of <?xml-stylesheet href="recipe.css" media="screen" alternate="no" title="For Web Browsers" charset="US-ASCII"?> <?xml-stylesheet href="printable_recipe.css" media="print" alternate="no" title="For Printing" charset="ISO-8859-1"?> <?xml-stylesheet href="big_recipe.css" media="projection" alternate="no" title="For presentations" charset="UTF-8"?> <?xml-stylesheet href="tty_recipe.css" media="tty" alternate="no" title="For Lynx" charset="US-ASCII"?> <?xml-stylesheet href="small_recipe.css" media="handheld" alternate="no" title="For Palm Pilots" charset="US-ASCII"?> |