Tips for Designer to Optimize the Page

Hello Friends,

Few tips to remember while designing your html pages:
a.Do not uses Table Structure while designing your layout instead of using tables use Div.
b.Try to Use separate JavaScript files (.js) do not include in the page. Using a separate .js file helps you to download once at keeps into the caches you need more than one not need to load it again. It makes page to lighter.
c.Try to avoid inline css. Always use separate css file. It also help your page to make lighter.
d.Try to use light images on server, instead of using heavy one. It also makes your page lighter.
e.Try to make parts without using JavaScript if it is possible through css.

Try and you feel the difference.

Comments