For future reference:
If it is a local network, you can just share your $HOME/Public folder by going into System Preferences -> Sharing and checking "File Sharing". Make sure your Public folder is in the list of shared folders, and that the access rights suffice for whoever wants to grab those files ("Everyone -> Read" should do the trick).
If it is the internet, you can just share your $HOME/Websites folder by going into System Preferences -> Sharing and checking "Web Sharing". Routers would have to route somehow to your computer, obviously; I won't go into that in detail because I don't know your network; you might want to port-forward incoming requests on port 49441 on the router to your computer on port 80 for TCP and UDP, for instance. Anyway, after you've done that, you can put your files to be shared directly into the Websites folder, and others will see them in a listing when they go to the URL the "Web Sharing" dialogue indicates / your router port-forwards to, provided the rights are appropriate (chmod a+r FILENAME on a Terminal gives reading rights to everyone for the file with the name FILENAME; so you'd probably want to do chmod -R a+r ~/Websites/* to recursively allow access for all files in $HOME/Websites/ (this doesn't follow symbolic links)).
I would strongly recommend deactivating sharing after it's all transferred. If you've made custom routes, you really want to deactivate or delete them once you're done.