The best magazine
How to Set Up a Java Chat Website
- 1). Create a basic, blank Web page. This can be done either using website creation software or using a text editor to create a basic file containing nothing but: <html><head><title>My Chat Website</title></head><body></body></html>. The purpose of this page is to host the Java Chat code that actually runs your chat website.
- 2). Visit a free Java Chat server such as ChatFiles, FreeJavaChat or Chat-Form and set up a chat room. Copy the HTML code they generate for your new room and paste it into your blank Web page, between the <body> and </body> tags. Save this file as something easy to remember, like chat.html or even index.html, if it is to be the first page visitors see on your site.
- 3). Upload the Web page to your website. How to do this will depend on your Web host, so follow their instructions. Browse to the page to check that everything is working. Make sure you have Javascript enabled on your browser, or you will not be able to use your new chat room.
Source: ...