Quick learn how to build a website


Websites are clearly no longer an alternative. The online community has grown so big that you just can’t avoid the digital realm, no matter how hard you try. But how do you build a website? You know there is code, but that’s it.

So here it is, “Build a site for newbies”:

Follow these steps and you’ll have a functional and attractive site at almost no cost to you.

Step 1:

Visit GoDaddy.com. Everything is quite simple. Just run a search for a domain you had your eye on. They will tell you if it is available or not. DO NOT choose an abstract domain name. Make sure the name you select tells people what you offer. In this sense, you will get more visitors who are there BECAUSE they know what they want.

Step 2:

Buy the Domain. This will set you back around $10. You’ll also need hosting and GoDaddy will provide it for an additional $60 a year. So now you have a website AND hosting and all you paid was $70 per year.

Step 3:

Download Filezilla. You can find it in any online search engine and it is ALWAYS free. This software allows you to upload and download files from your hosting server. It is by this method that you will add and update your files that essentially make your website look and act like it does. Once opened, near the top of that program it will ask you for information which will in turn allow you to connect to your host to view and modify your files:

Host: ftp://(your site).com

Username: GoDaddy Login Information

Password: GoDaddy login information

Port: 21

If for any reason the above information doesn’t work, just call GoDaddy and they’ll be happy to guide you. They are both knowledgeable and helpful in this regard.

So now you have a website. There’s nothing on it, but it’s yours anyway. The next step is to create some code. You’ll want to connect through Filezilla. If you’ve done it once, you can simply click “quick connect” each time. It is really very simple.

In the right hand corner, once connected to your hosting account, you will see a list of files and folders, along with a list of whatever is on YOUR computer (on the left). Just extract “index.html” from the right and drop it to the left. You are now copying it to your desktop.

Stage 4:

Download a text editor. Notepad will work, but to get tips, line numbers, and useful information about your code, you’ll need Aptana or Dream Weaver. None of these are free that I know of. Another option is TextPad. This is free. It lacks some cool features, but it gets the job done and is actually a decent program. This can be downloaded by searching for “Text Pad” in any search engine (Google!).

It will now open “index.html”, which is located on your desktop. Open this file with your chosen text editor.

Step 5: ERASE ALL.

Now you will write some code. Every website is made up MAINLY of html. This is the fundamental ground from which each site is built. You will need to write the following code EXACTLY as it appears below.

<title></title><br /> <meta name="description" content="Free Web tutorials"><br /> <meta name="keywords" content="HTML,CSS,XML,JavaScript"><br /> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1">

Simply enter your description and keywords instead of the ones seen above. You’ll want to select terms that you think others might type when searching for the services you provide. This can be a very simple step, but truth be told, it can also be very complex. To get the most out of your keywords and description, you’ll want to do research based on recent surveys and other online information. There are many keyword browsers that will do this for you, and they are usually free.

Another reason you’ll want to get the keywords and description right the first time is for SEO (search engine optimization). SEO will take into account each and every one of your online success. Basically, just because you have a website online does NOT mean others will see it.

Thanks to SEO, Google can find and show your listing to people searching for the terms that apply to your site. There are MANY search engines online today, the most prominent of which are Yahoo, Bing, MSN, and Google. They are all important, but Google is the most used, which makes them the guardians of the door. The problem is that Google has an extremely detailed list of demands before your site is indexed (meaning Google Spider Bots will crawl your site, letting Google know you exist and showing your site to others).

If you don’t meet Google’s requirements, you may not be listed, sandboxed, or even banned indefinitely. If things don’t work out the first time, there’s little you can do to get answers or even express your desire for a second chance.

It is through this ruthless policy that Google sifts through the slackers and lists only the sites that have shown the due respect that Google asks for (More or Less). But enough of that. The bottom line is that SEO can be a simple undertaking, but you’ll want to read more about it to stay away from its bad side.

The code above is written like this so that once it gets thick and full of text, it’s easy to read and figure out later.

Whatever you type inside the open and close “title” tags will show up in the Websites tab when it opens. Anything you write inside the opening and closing “body” tags will be considered the meat of your site, or the content.

You’ll find that you can’t just write ANYTHING on your “body” and make it look good. Without additional code, your lines, font, color, and spacing will be ALL TO NO. The web simply doesn’t recognize your efforts unless you take the time to write code that explains what you want to happen.

But, for the sake of time, let’s go ahead and write the following inside its body tag:

This is a test.

Now your body should look like this:

<title></title><br /> <meta name="description" content="Free Web tutorials"><br /> <meta name="keywords" content="HTML,CSS,XML,JavaScript"><br /> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"></p> <p>This is a test.</p> <p>

Leave a Reply

Your email address will not be published. Required fields are marked *