Search code examples
hyperlinklocation-href

how to link css file at html page


i have some script..it lies in some direktori :

var/www/html/dataTables-1.6/media/css/demo_page.css

how to put in html page?

<link href=......??? rel="stylesheet" type="text/css" media="all">

Solution

  • Assuming html is your webroot, place the following in your head tag.

    <link href="/dataTables-1.6/media/css/demo_page.css" rel="stylesheet" type="text/css" media="all">
    

    Is this what you were asking?