I am new to html and css, when I am testing the pages in local server, it takes time to get loaded, I am scared what time it will take on the internet. I include all the files in \[code\]<head>\[/code\] tag at the top, is there any better way to improve page loading.some of my page code is here\[code\]<?php include "check_timeout.php";?><!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script src="http://stackoverflow.com/questions/14067956/js/jquery-1.2.3.pack.js"></script> <script src="http://stackoverflow.com/questions/14067956/js/jquery-1.8.2.min.js"></script> <script src="http://stackoverflow.com/questions/14067956/js/new_product_page.js"></script> <script src="http://stackoverflow.com/questions/14067956/js/bootstrap.min.js"></script> <script src="http://stackoverflow.com/questions/14067956/js/application.js"></script> <script src="http://stackoverflow.com/questions/14067956/js/bootswatch.js"></script> <script src="http://stackoverflow.com/questions/14067956/js/all_events.js"></script> <link href="http://stackoverflow.com/questions/14067956/css/bootstrap.css" rel="stylesheet" media="screen"> <link href="http://stackoverflow.com/questions/14067956/css/bootstrap.min.css" rel="stylesheet" media="screen"> <link href="http://stackoverflow.com/questions/14067956/css/bootstrap-responsive.css" rel="stylesheet" media="screen"> <link href="http://stackoverflow.com/questions/14067956/css/bootstrap-responsive.min.css" rel="stylesheet" media="screen"><?php $qMaxPr_id = "SELECT MAX(prd_id) from prd_list WHERE 1"; $getMaxPr_id = mysql_query($qMaxPr_id,$con) or die("could not get usr_id : ".mysql_error()); while($infoResult = mysql_fetch_assoc($getMaxPr_id)) { $prd_id = $infoResult['MAX(prd_id)']; // echo $usr_id; } $prd_id = $prd_id+1; ?> <title>Add Product</title></head><body><?php include 'menu.html';?> <form id="form_new_product_page" method="post" action=""> ... ... </form></body></html>\[/code\]