Ways to Improve Website Performance
1. Minify your CSS and JavaScript documents to save a few bytes :-
Minification is the process of removing unneeded characters (such as tabs, spaces, comments) from the source code to reduce its file size. For example:
This chunk of CSS:
.some-class {
color:#fff;
line-height:20px;
font-size:9px;
}
can be converted to:
.some-class{color:#fff;line-height:20px;font-size:9px;}
For CSS Code Optimiser http://www.cleancss.com
.some-class {
color:#fff;
line-height:20px;
font-size:9px;
}
.some-class{color:#fff;line-height:20px;font-size:9px;}
2. Format your SQL Code/File :-
This Chunk of Code:
Create table ContactUs
(
name nvarchar(50) not null,email nvarchar(128) not null
)
can be converted to:
CREATE TABLE ContactUs (
name nvarchar(50) NOT NULL,
email nvarchar(128) NOT NULL
)
Create table ContactUs
(
name nvarchar(50) not null,email nvarchar(128) not null
)
CREATE TABLE ContactUs (
name nvarchar(50) NOT NULL,
email nvarchar(128) NOT NULL
)
No comments:
Post a Comment