SlideShare a Scribd company logo
Website optimizer
HTML, CSS & JAVASCRIPT
What?
  
Minify

Minify

Concatenate
screen.css
body {
display: block;
}
nav.css
li {
float: left;
}
forms.css
div.btn {
cursor: pointer;
}
Concatenate
screen.css
body {
display: block;
}
nav.css
li {
float: left;
}
forms.css
div.btn {
cursor: pointer;
}
combined.css
body {
display: block;
}
li {
float: left;
}
div.btn {
cursor: pointer;
}
Concatenate

Recompile
Website
Libraries
 Htmlcompressor
 https://code.google.com/p/htmlcompressor/
 YUI Compressor
 http://yui.github.io/yuicompressor/
 Closure-compiler
 https://code.google.com/p/closure-compiler/
Bert Verhelst
http://www.slideshare.net/bertyhell/website-optimizer
bert.co.nr

More Related Content

PDF
HTML Resources
PPTX
Kentico Cloud - Our First Impressions
PDF
從一個超簡單範例開始學習 Canvas
PPTX
ODP
KEY
Debugger
PPTX
HTML5 - Future of Web
PDF
Thinkful build a website (html, css)
HTML Resources
Kentico Cloud - Our First Impressions
從一個超簡單範例開始學習 Canvas
Debugger
HTML5 - Future of Web
Thinkful build a website (html, css)

What's hot (20)

PDF
Fecrash10:3:17 sd
PDF
Thinkful FrontEnd Crash Course - HTML & CSS
PDF
Frontend Crash Course
PDF
#6 - Template Engine: Mustache.js
PDF
Build your own Website
PDF
My charts can beat up your charts
PDF
Web components api + Vuejs
PDF
#5 - CSS3 Gradients and Backgrounds
PPTX
Designing responsive ibm i web applications
PPTX
Goodbye JavaScript Hello Blazor
PDF
Development tools & resources
KEY
State-of-the-art real-time web applications
PDF
Thinkful FrontEnd Crash Course - HTML & CSS
PDF
CSS3: The Future is Now at DrupalCon San Francisco
PDF
Blazor web apps
PPTX
REST Fundamentals (Short)
PDF
Yes we can!
PPT
Testable client side_mvc_apps_in_javascript
PDF
WooCommerce: Customization Definitions
PDF
Uwestfest15 - The grid
Fecrash10:3:17 sd
Thinkful FrontEnd Crash Course - HTML & CSS
Frontend Crash Course
#6 - Template Engine: Mustache.js
Build your own Website
My charts can beat up your charts
Web components api + Vuejs
#5 - CSS3 Gradients and Backgrounds
Designing responsive ibm i web applications
Goodbye JavaScript Hello Blazor
Development tools & resources
State-of-the-art real-time web applications
Thinkful FrontEnd Crash Course - HTML & CSS
CSS3: The Future is Now at DrupalCon San Francisco
Blazor web apps
REST Fundamentals (Short)
Yes we can!
Testable client side_mvc_apps_in_javascript
WooCommerce: Customization Definitions
Uwestfest15 - The grid
Ad

Recently uploaded (20)

PDF
Understanding Forklifts - TECH EHS Solution
PDF
System and Network Administraation Chapter 3
PPTX
history of c programming in notes for students .pptx
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Digital Systems & Binary Numbers (comprehensive )
PPTX
Computer Software and OS of computer science of grade 11.pptx
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
top salesforce developer skills in 2025.pdf
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Introduction to Artificial Intelligence
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
System and Network Administration Chapter 2
PPTX
Reimagine Home Health with the Power of Agentic AI​
Understanding Forklifts - TECH EHS Solution
System and Network Administraation Chapter 3
history of c programming in notes for students .pptx
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Digital Systems & Binary Numbers (comprehensive )
Computer Software and OS of computer science of grade 11.pptx
Odoo Companies in India – Driving Business Transformation.pdf
CHAPTER 2 - PM Management and IT Context
top salesforce developer skills in 2025.pdf
Wondershare Filmora 15 Crack With Activation Key [2025
wealthsignaloriginal-com-DS-text-... (1).pdf
Design an Analysis of Algorithms II-SECS-1021-03
PTS Company Brochure 2025 (1).pdf.......
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Upgrade and Innovation Strategies for SAP ERP Customers
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Introduction to Artificial Intelligence
Design an Analysis of Algorithms I-SECS-1021-03
System and Network Administration Chapter 2
Reimagine Home Health with the Power of Agentic AI​
Ad

How to optimize a website

Editor's Notes

  • #2: Mobile marketshare increasing2G 3GReduces file size complete website (zip)
  • #3: Reduction in filesizewitouthknowing the contentMinify: removeallunneededcharactersConcatenate filesRecompile javascript
  • #4: CommentsNew linesWhitespacesbetween tags (tabs, spaces, new lines)
  • #6: A lot of small filesHeaderCombine files => 1 header
  • #7: Thismakesit a bit more difficultBecause the links don’t match up in htmlSo i used a regularexpressiontoreplace the link tags to the correct tags
  • #8: Combine icons in 1 imageUsing cssSet as div backgroundTune background positionView 1 iconAdvisableto do itthis way for images thatdon’t have content (set via css)Blind ppldon’tneedanimgfor a button
  • #9: Google closure compilerCompileyour javascriptto more efficient javascriptRemovingunusedfunctionsinlinefunctionsif more efficientminifingExpectswelformed javascriptLint conormDon’t save functions as strings andexecutewithevalmethod
  • #10: Upload zipSelect optimizationsSee reportHistorychartReductionquite large, images causelessreductionCan’toptimize images (convertallto gif) => bad result, need human