https://apple.stackexchange.com/questions/100570/getting-all-files-from-a-web-page-using-curl
Replace example.com/website with the website you want to download files from.
wget -r -np -k http://example.com/website/
The above command will download all the files it can find in that web directory, i.e. (html files) This can be helpful if your trying to move a simple HTML site.
The -r option means recursive, the -k option converts the links to local links after it downloads the page.