how to load all css and js on one request Here is a sample HTML document that similarly includes many CSS and JavaScript files\[quote\] \[quote\] < link rel="stylesheet" type="text/css" href="http://stackoverflow.com/questions/14412792/path/to/960framework.css"> < link rel="stylesheet" type="text/css" href="http://stackoverflow.com/questions/14412792/path/to/base.css"> < link rel="stylesheet" type="text/css" href="http://stackoverflow.com/questions/14412792/path/to/navigations.css"> < script type="text/javascript" src="http://stackoverflow.com/questions/14412792/path/to/jQuery.js"> < script type="text/javascript" src="http://stackoverflow.com/questions/14412792/path/to/functions.js"> < script type="text/javascript" src="http://stackoverflow.com/questions/14412792/path/to/handlers.js"> \[/quote\]\[/quote\]... more then its make 6 request but i want load all js and css at a time (only one request )so i try for css\[quote\] \[quote\] allStyles.css.php // include("cssReset.css"); include("960framework.css"); include("base.css"); \[/quote\]\[/quote\]for js \[quote\] \[quote\] allScripts.js.php include("jQuery.js"); include("functions.js"); include("handlers.js"); include("ajax.js"); include("navigations.css"); \[/quote\]\[/quote\]and just call \[quote\] \[quote\] < link rel="stylesheet" type="text/css" href="http://stackoverflow.com/questions/14412792/path/to/allStyles.css.php"> < script type="text/javascript" src="http://stackoverflow.com/questions/14412792/path/to/allScripts.js.php"> \[/quote\]\[/quote\]all js and css loaded but css and js not woring n page ?