1

I'm just wondering if there's a way to link multiple css-files to one html-file without having to write down every link like below?

<link rel="stylesheet" type="text/css" href="style/alla.css">
<link rel="stylesheet" type="text/css" href="style/meny.css">
<link rel="stylesheet" type="text/css" href="style/fotografier.css">
<link rel="stylesheet" type="text/css" href="style/footer.css">
Johanna
  • 13
  • 2
  • 1
    Something like this? [calling multiple external css files at once to html page](http://stackoverflow.com/questions/17432929/calling-multiple-external-css-files-at-once-to-html-page) – FirstOne Oct 29 '15 at 14:20

1 Answers1

0

You can merge them into one, there are multiple tools to do that:

  1. http://www.shrinker.ch/
  2. https://github.com/zenorocha/browser-diet/wiki/Tools#css
michelem
  • 14,430
  • 5
  • 50
  • 66