westonallen0990
Member
- Apr 26, 2013
- 154
- 16
Hey DevBest!
**HTML CODES INCLUDED!
I have decided to make a [TUT] on how to make a good (meaning good design, popular, used, etc.)
So, First of all, get a website creator. *Note: Usually I would recommend
If you are trying to make a personal site, make your title your name.
If you are trying to make a business site, make your title your business name.
Now, Select a good theme -
If you want a personal site, try to make it colourful.
Business sites can be colourful, too - however do not make them too colourful.
Now, Choose your pages -
Free Version of website creators don't usually give unlimited pages!
So you should try to have the following:
Personal - Home Page, About Me, Contact, Photo Gallery, Guestbook
Habbo Retro - Home Page, Staff, Buy VIP, VIP Users, Client
Business - Home Page, About Us, Our Services, Contact
Now, You must decide what you want on your pages -
This should be pretty easy, If you are trying to make a Contact Page, just drag and drop in a Contact Form, or you can use HTML:
Hope this helped you!
**HTML CODES INCLUDED!
I have decided to make a [TUT] on how to make a good (meaning good design, popular, used, etc.)
So, First of all, get a website creator. *Note: Usually I would recommend
You must be registered for see links
but they don't have alot of themes in the Free Version. -
You must be registered for see links
-
You must be registered for see links
-
You must be registered for see links
If you are trying to make a personal site, make your title your name.
If you are trying to make a business site, make your title your business name.
Now, Select a good theme -
If you want a personal site, try to make it colourful.
Business sites can be colourful, too - however do not make them too colourful.
Now, Choose your pages -
Free Version of website creators don't usually give unlimited pages!
So you should try to have the following:
Personal - Home Page, About Me, Contact, Photo Gallery, Guestbook
Habbo Retro - Home Page, Staff, Buy VIP, VIP Users, Client
Business - Home Page, About Us, Our Services, Contact
Now, You must decide what you want on your pages -
This should be pretty easy, If you are trying to make a Contact Page, just drag and drop in a Contact Form, or you can use HTML:
HTML:
<form name="htmlform" method="post" action="html_form_send.php">
<table width="450px">
</tr>
<tr>
<td valign="top">
<label for="first_name">First Name *</label>
</td>
<td valign="top">
<input type="text" name="first_name" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top"">
<label for="last_name">Last Name *</label>
</td>
<td valign="top">
<input type="text" name="last_name" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="email">Email Address *</label>
</td>
<td valign="top">
<input type="text" name="email" maxlength="80" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="telephone">Telephone Number</label>
</td>
<td valign="top">
<input type="text" name="telephone" maxlength="30" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="comments">Comments *</label>
</td>
<td valign="top">
<textarea name="comments" maxlength="1000" cols="25" rows="6"></textarea>
</td>
</tr>
<tr>
<td colspan="2" style="text-align:center">
<input type="submit" value="Submit"> ( <a href="http://www.freecontactform.com/html_form.php">HTML Form</a> )
</td>
</tr>
</table>
</form>