[TUT] [Noob-Friendly]How to make a good free website [Noob-Friendly] [TUT]

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 but they don't have alot of themes in the Free Version.
Now, Choose a site title -
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>
Hope this helped you!
 

j4ke

Member
Nov 4, 2012
364
97
So pointless, they are website generators, not hard at all to use. And ugly themes, you can get custom themes, but not many are compatible with these websites.
 

Blasteh

Lord Farquaad
Apr 3, 2013
1,151
513
Get paid hosting? Lol. This is so pointless.. Anyone can use webs.com,wix, Weebly, Etc. Its not hard. This shouldn't even have been approved. Next time, make a tut on how to make an ACTUAL website.. Not generated ones..
 
Apr 26, 2013
154
16
So pointless, they are website generators, not hard at all to use. And ugly themes, you can get custom themes, but not many are compatible with these websites.
Get paid hosting? Lol. This is so pointless.. Anyone can use webs.com,wix, Weebly, Etc. Its not hard. This shouldn't even have been approved. Next time, make a tut on how to make an ACTUAL website.. Not generated ones..
Look at the title - NOOB FRIENDLY
 

Sysode

Front-End Developer
Dec 11, 2012
1,673
848
Like what said, something is telling me that you've copied the HTML?

HTML:
action="html_form_send.php
- Where is the above file located? Without it the form simply will not work. Mind sharing so it's a complete script?
 

Users who are viewing this thread

Top