Is it possible to include multiple css at once in html? Or to be precise, is it possible to include all css placed in a directory, in one go? like at present what we d
You'd need to do this serverside. If you're using PHP, have a look at glob.
For example:
foreach (glob("path/to/css/*.css") as $css) { echo "\n"; }