1\name{HTMLCSS}
2\alias{HTMLCSS}
3
4\title{ Insert HTML code to refer to an external CSS file }
5\description{
6  Allow to use CSS file in a report
7}
8\usage{
9HTMLCSS(file = HTMLGetFile(), append = TRUE, CSSfile = "R2HTML.css")
10}
11
12\arguments{
13  \item{file}{ the target HTML file }
14  \item{append}{ logical. If 'TRUE' output will be appended to 'file'; otherwise, it will overwrite the contents of 'file'}
15  \item{CSSfile}{ name of the CSS file to refer }
16}
17
18\value{
19	no value returned.
20}
21\references{ For information about CSS, have a look at W3 web site http://www.w3.org/Style/CSS/ }
22\author{ Eric Lecoutre }
23
24
25
26\examples{
27myfile <- file.path(tempdir(),"tmp.html")
28HTMLCSS(myfile,CSSfile="myownCSS.CSS")
29}
30\keyword{ print }
31\keyword{ IO }
32\keyword{ file }
33