How to Create a Website & Add a Chat Room
Creating a web site and adding a chat room requires a text editor and the code for a chat server. There are many chat servers to choose from. Some allow you to create your own chat room; others allow you to access an array of chat rooms. Some will let you change design elements of the chat room including the color of the text and box.
Instructions
-
-
1
Open the text editor and create a new file by clicking on "File" and "New".
-
2
Add the basic HTML code for web pages this includes the HTML tag, HEAD tag, TITLE tag, and BODY tag. For example:
<html>
<head>
<title>My Chat Room</title>
</head>
<body>
</body>
<html>
-
-
3
Decide on the chat room you would like to use and get the code for the chat room. On the chat rooms web page change the parameters and click submit. The page will give you the code. Select the code then click Ctrl+C on your keyboard. For a Mac, use Cmd+C.
-
4
Paste the code between the BODY tags on your web site in the text editor. Click between the BODY tags and press Ctrl+P on the keyboard. For a Mac, use Cmd+P.
-
5
Save your file as index.html.
-
1