Web design skills

web design

web design

When you have a website and professional website design it, but you’re not interested in the speed of your website to display it, it is ideal for users or not? This article will help you solve problems effectively:

1. Use CSS to define properties of objects in the website

The use of CSS will help improve web page download speed significantly. The browser will only load CSS file on every client machine, the next time the web page using CSS file will be taken right at the Client. The focus entirely on the attribute definition file for CSS help HTML code to be brief, clear and reduces the size of the site. A more convenient to use the CSS file that you can change the color, the look of the site quickly by editing the CSS file properties.

2. Writing JavaScript in a page and for many others

This technique is similar to using CSS file for every page. For example, JavaScript code to show ads for multiple pages, if you write all the JavaScript code in a file. Like the CSS file, the browser only download this file once.

3. Using Ajax

Ajax stands for Asynchronous JavaScript And XML’s, is using JavaScript and XML techniques to optimize the data exchange between client and server. Assuming that the site contains a wealth of information, including a section containing two combobox: Country and City. When you select a country on a combobox, the combobox second in the respective cities will appear. The normal way, when choosing a country, its parameters will be sent to the server. At this site’s content is recalculated and then be returned to the client with combobox2 contains the cities of selected countries. Thus only a fraction of web pages that have changed the entire site to download and render. With AJAX, after processing, the server only sends the result to the client list of cities rather than the entire site. This greatly improved the responsiveness of the site.

4. Boldly out what is not needed

Skip Flash files, audio if they are not really necessary. Also, for web programming, the use of HTML control server control instead of ASP / JSP … also helps reduce compile time (from ASP / JSP … to HTML).

5. Avoid nested table in table

When you write nested table in the table, the browser will take more time to display the web page. This is something few people to the most but is a technique for improving the speed displayed the most significant sites. When you put a table inside a table, will take a long time to browse through the entire web browser code within each table and then make the presentation on the screen for viewers. If possible, you use CSS to create rows and columns to the site. (more…)