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 do is:-
<link type="text/css" rel="stylesheet" href="./tabs_css/navigation.css">
I need something like:-
<link type="text/css" rel="stylesheet" href="./tabs_css/*.css">
Is it possible? Or is there any alternative of this?
See Question&Answers more detail:os