How to download the webiste with all resources ?

In Linux a simple command, wget, allows to download a website and store it with all resources in your system. Imagine that you want to download http://lequipe.fr. You can make it with following command:

wget  -p -H http://www.lequipe.fr

Where:
- p: indicates to download all images which are mandatory to good displaying of the page
- H: means to follow extern hosts in recursive mode (download the resources from extern resources to downloaded page)