<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Web Design Blog</title>
	<link>http://ica-master.org</link>
	<description>Information about Web Design</description>
	<pubDate>Fri, 12 Oct 2007 13:50:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>Taking advantage of Open Source PHP MySQL applications</title>
		<link>http://ica-master.org/2007/10/12/taking-advantage-of-open-source-php-mysql-applications/</link>
		<comments>http://ica-master.org/2007/10/12/taking-advantage-of-open-source-php-mysql-applications/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 13:47:44 +0000</pubDate>
		<dc:creator>Designer</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://ica-master.org/2007/10/12/taking-advantage-of-open-source-php-mysql-applications/</guid>
		<description><![CDATA[ One obvious solution is to approach a software development company and obtain a custom built product. However to take this approach one needs to first know what features and functionality is desired. Then on the other hand in some instances the need does not warrant the cost of commissioning a custom application.
A plethora of [...]]]></description>
			<content:encoded><![CDATA[<p class="articletext"> One obvious solution is to approach a software development company and obtain a custom built product. However to take this approach one needs to first know what features and functionality is desired. Then on the other hand in some instances the need does not warrant the cost of commissioning a custom application.</p>
<p>A plethora of free open source web applications exist today. Regardless of the specific circumstances of the need these applications can quite often prove to be a valuable resource.</p>
<p>http://freshmeat.net is one of the best online directories of open source applications. A quick search on freshmeat.net for say &#8220;intranet&#8221;, &#8220;cms&#8221; or &#8220;groupware&#8221; will yield pages of results. Browsing these results any application marked beta, stable or mature is a possible solution. A large majority of the available web applications would also state PHP + MySQL as the platform.</p>
<p>Oh well I need to have some Linux Server and it&#8217;s way too hard is a common reaction. Fortunately this is not entirely true. If you wanted to host a large scale production site then the chances are that a custom Linux server may well be a requirement. However just evaluating on your own PC, or setting up a solution on your LAN for anywhere between 1 to 100 users can be easily realized without custom Linux servers.</p>
<p>The solution is in another open source free product known as WAMP server. The acronym stands for Windows Apache MySQL PHP server. WAMP is extremely simple to install and a good platform for either evaluating PHP + MYSQL applications or operating the same for up to a few hundred users.</p>
<p>Visit http://www.wampserver.com<br />
Or http://www.wampserver.com/en/ for the English version<br />
First it is important to note that most open source PHP + MySQL applications will not run correctly on the latest versions of PHP and MySQL. For this reason instead of the downloading the latest version of WAMP server click on &#8220;downloads&#8221; from the left menu and then click on &#8220;older versions at sourceforge&#8221; This will take you to<br />
https://sourceforge.net/project/showfiles.php?group_id=116092<br />
scroll down and select &#8220;WAMP5 1.4.3&#8243;. Download the WAMP5_1.4.3.exe file and install it on your computer with default options.</p>
<p>Once installed and started a new icon will appear in the icon tray near the date/time on your task bar. Left click on this icon to activate it&#8217;s menu which allows you to restart or edit the configuration files.</p>
<p>Changing the web server port if necessary.</p>
<p>One common reason for wanting to edit configuration file is in case you already have a web server running on the same computer. In this case you would need to change the port address used by apache to something other than 80. In this case 8080 would probably be a good alternative choice.</p>
<p>&#8212;&#8212;-Changing the web server port address Begin&#8212;&#8212;&#8212;&#8211;<br />
Click on the WAMP server icon and from the menu under &#8220;config files&#8221; select &#8220;httpd.conf&#8221;. A long text file will open up in notepad. In this file scroll down to the line that reads &#8220;Port 80&#8243; and change this to read &#8220;Port 8080&#8243;, Save the file and close notepad. Once again click on the wamp server icon and select restart all services. One more change needs to be made before we are done. In Windows Explorer find the location where WAMP server was installed which is by Default &#8220;C:\Wamp&#8221;. Next goto the subfolder named &#8220;www&#8221;. Inside here you will see another subfolder named &#8220;phpmyadmin&#8221;. We are looking for a file named &#8220;config.inc.php&#8221;. In a default installation this file will be at &#8220;C:\Wamp\www\phpmyadmin\config.inc.php&#8221;. Open this file in wordpad and find the line that reads<br />
$cfg[&#8217;PmaAbsoluteUri&#8217;] = &#8216;localhost/phpmyadmin/&#8217;;<br />
Change this line to read:<br />
$cfg[&#8217;PmaAbsoluteUri&#8217;] = &#8216;localhost:8080/phpmyadmin/&#8217;;<br />
&#8212;&#8212;-Changing the web server port address End&#8212;&#8212;&#8212;&#8211;</p>
<p>Now open a web browser and access http://localhost . Or if you changed the port address to 8080 then goto http://localhost:8080/ You should be greeted by the WAMP welcome page. For each application that you wish to install create a new folder inside the &#8220;www&#8221; subfolder of where WAMP was installed. Lets assume that WAMP was installed at &#8220;C:\Wamp&#8221;.</p>
<p>Let say for example you wanted to install Mambo (www.mamboserver.com)<br />
1)	You would download the .zip or .tar.gz or .tar.bz2 file and uncompress it using winzip or winrar into &#8220;c:\Wamp\www\mambo&#8221;.<br />
2) You would access the wamp welcome page http://localhost/ or http://localhost:8080/ and access phpmyadmin. In here you would create a new database for mambo.<br />
3) You would then access the wamp welcome page http://localhost/ or http://localhost:8080/ and from the list at the bottom of the page you would click on Mambo<br />
4) You would then be greeted by the mambo installer which is a simple 5 step process. (the default username for MySQL is root and the password is blank as in an empty string)</p>
<p>Let say for example you wanted to install oscommerce<br />
You would download the .zip or .tar.gz or .tar.bz2 file and uncompress it using winzip or winrar into &#8220;c:\Wamp\www\oscommerce&#8221;.<br />
5) You would access the wamp welcome page http://localhost/ or http://localhost:8080/ and access phpmyadmin. In here you would create a new database for oscommerce.<br />
6) You would then access the wamp welcome page http://localhost/ or http://localhost:8080/ and from the list at the bottom of the page you would click on Mambo<br />
7) You would then be greeted by the oscommerce installer which is a simple process. (the default username for MySQL is root and the password is blank as in an empty string)</p>
<p>And so on and so forth.</p>
<p>Any PHP + MySQL web application which does not provide an automated installer is most likely not a very mature application.</p>
<p>Good luck<br />
http://www.zapstrategy.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://ica-master.org/2007/10/12/taking-advantage-of-open-source-php-mysql-applications/feed/</wfw:commentRss>
		</item>
		<item>
		<title>At A Glance: ASP.net vs. PHP</title>
		<link>http://ica-master.org/2007/10/08/at-a-glance-aspnet-vs-php/</link>
		<comments>http://ica-master.org/2007/10/08/at-a-glance-aspnet-vs-php/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 13:45:25 +0000</pubDate>
		<dc:creator>Designer</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://ica-master.org/2007/10/08/at-a-glance-aspnet-vs-php/</guid>
		<description><![CDATA[ In the world of web development, the choice of which development language to use commonly comes down to two popular choices. Web applications, specifically those relying on back end databases, are typically being created using either Microsoft&#8217;s ASP.Net language, or the Open Source alternative language of PHP. Reasons why one might choose one over [...]]]></description>
			<content:encoded><![CDATA[<p class="articletext"> In the world of web development, the choice of which development language to use commonly comes down to two popular choices. Web applications, specifically those relying on back end databases, are typically being created using either Microsoft&#8217;s ASP.Net language, or the Open Source alternative language of PHP. Reasons why one might choose one over the other can include: The cost of development tools, or availability of such tools, or even ones comfort level with the Open Source initiative. The goal of this article is to provide some perspective on reasons why one might choose one over the other.</p>
<p>Active Server Pages or ASP has long been an option for creating dynamic web content. Active Server Pages facilitates the ability to use databases such as Access or SQL just to name a few, to create dynamic, feature rich websites. The work going on behind the scenes in serving up the dynamic content is being done at the server level by the Active Server Pages source code. Microsoft has spent a great deal of time and resources promoting their .Net family of programming languages of which ASP.Net is a member. In order to develop with ASP.Net one must obtain the extremely expensive Microsoft Visual Studio Programming Suite. While expensive, Visual Studio is an asset to any programmer due to its vast amount of features. As with all of Microsoft&#8217;s products, support and updates are constantly made available for ASP.Net. The shear amount of features that Microsoft packs into Visual Studio, coupled with Microsoft&#8217;s extensive support make certainly make ASP.Net an attractive solution for any corporation&#8217;s web development needs, but the cost can be prohibitive, if not impossible to afford for the individual web developer.</p>
<p>PHP which is in its 5th revision now, is an Open Source web development language that also facilitates the creation of feature rich, dynamic websites that can use databases. Being Open Source means simply that PHP isn&#8217;t owned by anyone. Just as with Active Server Pages, the work going on behind the scenes of serving up the dynamic web content is being done by PHP at the server level. As with most Open Source products, the resources available to a PHP developer are free of charge. This makes PHP extremely attractive to the independent web developer. There are some commercial quality development suites available from companies like Zend, but there is also wealth of free resources just a Google Search away. Because there is really no corporate entity behind PHP, support and development on PHP is done by the community of its users and developers themselves. Surprisingly this does not seem to adversely affect the ability to find support for PHP.</p>
<p>All in all, ASP.Net and PHP are both excellent options, offering basically the same functionality. Whether the decision comes down to the cost of initial investment, or the comfort level one has regarding Open Source, or something else entirely, the end result depends upon the mastery of whichever language is chosen.</p>
<p class="articletext">&nbsp;</p>
<p class="articletext"> Ian Wilson Lockwood is a support analyst for Apollo Hosting. Apollo Hosting provides website hosting, ecommerce hosting, vps hosting, and web design services to a wide range of customers.  http://www.apollohosting.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://ica-master.org/2007/10/08/at-a-glance-aspnet-vs-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dreamweaver too complicated?, Go Live and Frontpage too steep a learning curve?</title>
		<link>http://ica-master.org/2007/10/06/dreamweaver-too-complicated-go-live-and-frontpage-too-steep-a-learning-curve/</link>
		<comments>http://ica-master.org/2007/10/06/dreamweaver-too-complicated-go-live-and-frontpage-too-steep-a-learning-curve/#comments</comments>
		<pubDate>Sat, 06 Oct 2007 13:43:47 +0000</pubDate>
		<dc:creator>Designer</dc:creator>
		
		<category><![CDATA[Web Design Basics]]></category>

		<guid isPermaLink="false">http://ica-master.org/2007/10/06/dreamweaver-too-complicated-go-live-and-frontpage-too-steep-a-learning-curve/</guid>
		<description><![CDATA[ XSitePro is a new website design package that we have reviewed to create entire web sites, not just individual pages, and optimize them
I think that some web design packages have too steep a learning curve. That’s why I want to tell you about a product that I’ve just reviewed called XSitePro. Here is a [...]]]></description>
			<content:encoded><![CDATA[<p class="articletext"> XSitePro is a new website design package that we have reviewed to create entire web sites, not just individual pages, and optimize them<br />
I think that some web design packages have too steep a learning curve. That’s why I want to tell you about a product that I’ve just reviewed called XSitePro. Here is a brief summary, and you can see the full review by using the link indicated at the end of this article.</p>
<p>I was looking for something more versatile than a lot of the lower end website building software such as Web Easy Pro, and Web Plus, yet with a good deal of the functionality of the higher end products such as Dreamweaver and Frontpage. As I needed to start quickly I didn’t want the steep learning curve that these higher end products demanded.</p>
<p>Quite by accident I came across XSitePro. At first I was nearly dissuaded from taking it further, because I was presented with a one-page sales website which the software authors put out.</p>
<p>Personally, having spent a great deal of time, recently, researching web products, the one page sales letters deter me from going any further, as I have subscribed to several, and always been disappointed. I also dislike parting with money before I ‘touch and feel’ a product, and particularly like to download a fifteen or thirty day demo, which was just not available.</p>
<p>Erring on the side of caution I posted a request on the Warrior forum, and asked for advice as to which website development software I should opt for. More replies were positive about XSitePro than any other, so I subscribed and downloaded the software, putting faith in the promise of a 365 day refund.</p>
<p>I was certainly not disappointed and initially completed the tutorial, where I constructed a ten page website in around 11/2 hours. You can view the website completed in the tutorial by going to the web page indicated at the end of this article.</p>
<p>XSitePro is feature rich and I have picked out my 12 favorits.</p>
<p>XSitePro optimizes each page to rank well with the search engines and gives suggestions as to what tasks you need to carry out, to bring this about.</p>
<p>The ‘Help’ functionality is very good with on-screen pages supported by ‘Index’ and ‘Search’ facilities. There is ‘Context Sensitive Help’ throughout providing immediate help relating to the function you are currently performing. ‘Online Help’ accesses a ‘Knowledgebase’ of frequently asked questions with the ability to ‘Submit a Ticket’ if the answer is not found.</p>
<p>Using a ‘Template’ principle it is possible to make amendment to all pages by making alterations to the template. Therefore if you want to change text, site colours, logos etc. on all pages, this is easily achieved.</p>
<p>The Multi-Page Creation Wizard provides a quick and easy way of creating the infrastructure of a new site, or adding whole new branches to the infrastructure of an existing site.</p>
<p>You can simplify your web creation tasks using the valuable To Do Report automatically produced by XSitePro. The software produces a checklist of suggested actions still needed for each page so you never forget to carry out essential tasks.</p>
<p>Two mouse clicks will introduce Google Adsense ads to your web pages bringing about another income stream.</p>
<p>Powerful functionality immediately available which includes pop-ups, pop-ins, link pages, automatic sitemap, page import, scripts, redirect pages and much more.</p>
<p>The software comes with 163 website templates included, making website creation even faster and easier.</p>
<p>Built-in Article and Product pages which are of considerable benefit to internet marketers.</p>
<p>No knowledge of HTML needed, making it also a beginners tool. If you can use Microsoft Word, or similar then XSitePro is for you.</p>
<p>Print out an incredibly detailed report that tells you exactly what you need to do to each of your pages, which means you can make sure that all your pages are exactly right before you publish them to the Internet.</p>
<p>Easily add a links page to your site that looks great and is easy to update, which means you can benefit from a reciprocal linking campaign (i.e. exchanging links with other sites).</p>
<p>In summary we found it to be easy to learn, intuitive and we were able to produce results fast.</p>
<p class="articletext">&nbsp;</p>
<p class="articletext"> © Paul Lewis 2006. All rights reserved. Reprints welcomed with article and resource box unedited. See the completed web pages created in the XSitePro web page tutorial. You can see detailed functionality, screen movies, tutorial samples, free e-books and much more by visiting the XSitePro full review. Paul is also CEO of Demovision, a company specializing in talking heads. You can see examples if you go to the &#8220;Contact Us&#8221; page at the above site. You will need Internet Explorer to view.</p>
]]></content:encoded>
			<wfw:commentRss>http://ica-master.org/2007/10/06/dreamweaver-too-complicated-go-live-and-frontpage-too-steep-a-learning-curve/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Keyword Research Guide &#8212; How and Why!</title>
		<link>http://ica-master.org/2007/10/04/keyword-research-guide-how-and-why/</link>
		<comments>http://ica-master.org/2007/10/04/keyword-research-guide-how-and-why/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 13:42:39 +0000</pubDate>
		<dc:creator>Designer</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://ica-master.org/2007/10/04/keyword-research-guide-how-and-why/</guid>
		<description><![CDATA[ Keyword marketing-the importance..
In the Field of SEO-Search engine optimization choosing keywords is one of the most important tasks. You should choose keyword wisely. Choosing keyword is not a guessing Game but it is an art.
Why to choose keywords?
As you probably aware of search engine traffic. Search engine traffic is very very important for success [...]]]></description>
			<content:encoded><![CDATA[<p class="articletext"> Keyword marketing-the importance..</p>
<p>In the Field of SEO-Search engine optimization choosing keywords is one of the most important tasks. You should choose keyword wisely. Choosing keyword is not a guessing Game but it is an art.</p>
<p>Why to choose keywords?</p>
<p>As you probably aware of search engine traffic. Search engine traffic is very very important for success of any website. It is estimated that approximately 65 to 85% of traffic (average) coming from search engine (however is depends on how you promote your website).search engine is only way to create highly targeted traffic. You can improve visitor to sales ratio of your website if you successfully receive traffic from search engine. Or improve your revenue by attracting more visitors.</p>
<p>If you are selling Music CDs online. If your website is on top for key Phrase like &#8220;Music CD&#8221; on all Major search engines then just think how many people will search for Music CD in a day?? I think lots of. Now. This is the way you are getting visitor searching for Music CDs. However there will be lots of search in a day for term CD like</p>
<p>[1] Software CDs<br />
[2] E-Book CDs<br />
[3] Video CDs<br />
[4] Game CDs etc&#8230;</p>
<p>But traffic coming form these terms is Meaningless for you to create sales. So your page should be relevant only for Key phrases like music CDs, audio CDs etc … so it will be better to choose Keywords related to your business rather than selecting randomly or blindly. I hope you will now able to understand importance of choosing better keywords</p>
<p>How to choose keywords?</p>
<p>There are lots of tools for choosing better Keywords like Nichebot, overture keyword suggestion tool, Wordtracker etc&#8230;First decide &#8220;what is your target market?&#8221; and then use these tools. Example you are selling E-books related to website design. Than you should first research how many people every day search for &#8216;Web Design E-books&#8221; go to Nichebot.com for that and simply search Web Design E-books. Nichebot will provide you count of last 60 days for this Key Phrase. We can see that Count for this key phrase is………..Or Go to Wordtracker.com site and search for this keyword Phrase and you will see related information on specific key phrase and you will be able to get information related to this keyword. Phrase.</p>
<p>They will provide you all related keywords</p>
<p>Example: For &#8220;Directory submission&#8221; you will see following related or nearly related Keywords. (This can also help to receive ONLY targeted traffic&#8230;)</p>
<p>Related term-count(average search in two month)<br />
Directory submission-3978<br />
Search engine directory submission-679<br />
Search engine submission software directory-266<br />
directory internet submission-163<br />
directory website submission-159<br />
directory engine search submission-133<br />
directory submission services-129</p>
<p>Follow this Url to know more&gt;&gt; http://www.nichebot.com/kd/?term=directory+submission</p>
<p>you can follow one of the following tool for keyword research.</p>
<p>[1] wordtracker.com<br />
[2] Nichebot.com<br />
[3] inventory.overture.com/</p>
<p>Here is a list of top free Keyword research tools. visit it.&gt;&gt; http://www.seo-resources.inetzeal.com/top-free-seo-tools.htm the list include keyword suggestion tools,keyword analyzer tools,keyword density checker tools and lot more..</p>
<p>Now you have to decide which Keyword is less competitive for your website and you can easily reach on top. Based on that you should place these Keywords on your site..</p>
<p>Where and How to place these Keywords?</p>
<p>You are now familiar with keyword/key phrases. Now Question is &#8216;where to Put these keywords?&#8221; here are some places where you can place these keywords</p>
<p>[1] Meta tags<br />
[2] Title Tags<br />
[3] Through out the Description on the page</p>
<p>Meta tags:-</p>
<p>Meta tags are invisible for Visitor and as you might know search engines like Yahoo, Google, MSN are Not providing weight to them to rank your page. But still you can place your keywords in Meta title, keywords and description section.</p>
<p>Title Tags:-</p>
<p>This is very important place where you should place your keyword for better ranking in search engine. The main Keywords must be here for which you are optimizing your site. Try to include its synonyms Key phrases / keywords also to receive traffic of related keywords. Example you can create your title like this way<br />
Buy Music CDs online: The shop for buying audio CDs online<br />
You are including your two targeted keywords here.</p>
<p>Description:</p>
<p>After title tags this is also one of the most important section where you can place your keywords. But don&#8217;t go over bound .density of keywords/ phrases should be 7-10%. Otherwise search engines will consider it as keyword stuffing and your rank will go down rather than improving</p>
<p>Other places where you can place these keywords:</p>
<p>Images: -</p>
<p>you can choose name of images like music_cds.gif audio_cds.jpg etc rather than 0545.gif and image.jpg! This will improve relevancy of your page for related keyword</p>
<p>Name of domain, Sub directory and sub domain:-</p>
<p>Before you choose any domain name, directory or sub directory you should consider your keywords/ key phrases and also choose them according to your target market.</p>
<p>Example:</p>
<p>Just look at my site. I selected sub domain for my site like http://directory-submission.inetzeal.com/ and http://link-building.inetzeal.com/ for targeting my keywords. Now see source code of Page http://directory-submission.inetzeal.com/ you will find that to improve relevancy of my page related to keywords I also kept name of my logo like this directory_submission_and_link_building.png .then I placed title like Directory submission service. And placed this keyword phrase in whole description.now my page is relevant for keyword phrase &#8220;directory submission&#8221;, &#8220;directory submission service&#8221;. Or &#8216;web directory submission&#8221; etc&#8230;</p>
<p>I have chosen every sub domain according to this to improve relevancy for specific keywords</p>
<p>I strongly recommend you to choose your sub domain or sub directory wisely. if you are creating just a page then you can select like this …./directory-submission.html because search engines text matching will match this keyword and will rank your site on top with your competitor</p>
<p>So, like this article? It took two days to write. Any feed back good or bad are always appreciated. You can contact me at http://inetzeal.com/contact_us.htm</p>
<p class="articletext">&nbsp;</p>
<p>Manish Mathukiya Is webmaster Of Inetzeal SEO Services( inetzeal.com/ ).he offers various services like Directory submission ( directory-submission.inetzeal.com/ ).link Building and other SEO services<br />
View their website at: inetzeal.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://ica-master.org/2007/10/04/keyword-research-guide-how-and-why/feed/</wfw:commentRss>
		</item>
		<item>
		<title>On NEWBIE Matters</title>
		<link>http://ica-master.org/2007/10/02/on-newbie-matters/</link>
		<comments>http://ica-master.org/2007/10/02/on-newbie-matters/#comments</comments>
		<pubDate>Tue, 02 Oct 2007 13:41:27 +0000</pubDate>
		<dc:creator>Designer</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://ica-master.org/2007/10/02/on-newbie-matters/</guid>
		<description><![CDATA[ Since I am, what professional marketers on the internet generally call a &#8220;Newbie&#8221;, I have tried to come up with all sorts of ways of finding information and my future prospects.
One of these ways, and perhaps a tips that I can give, is - and this without any strategy what so ever - just [...]]]></description>
			<content:encoded><![CDATA[<p class="articletext"> Since I am, what professional marketers on the internet generally call a &#8220;Newbie&#8221;, I have tried to come up with all sorts of ways of finding information and my future prospects.</p>
<p>One of these ways, and perhaps a tips that I can give, is - and this without any strategy what so ever - just to browse around on the different sites; open a few of all the emails that you get from other marketers in return, and maybe just click on a link or two, to see what they&#8217;re actually marketing. In addition, go from one page to another, not being afraid of signing up for a subscription or another, I mean, if it is free you will not loose anything anyway.</p>
<p>Not long ago I found myself doing just that and this happened to be a forum on SeoNews. Ok, I looked around, read a few, and stopped particularly at one, which talked about difficulties in getting to the top of the search engines, and what to do? Some of the answers talked about a nice way of writing that matters, style, form and so on.</p>
<p>- Ok, I thought, since I had learned a thing or two at the trainings at work. It is not only a question of a nicely put content - but also a question of linking, meta tags, titles, &#8220;daisy chaining&#8221; (a specific linking technique) and such things, to put with your site when you post it. This stuff feed the search engines to push your site forward from within and from underneath. Well, I answered the forum request to the best of my knowledge, and then forgot about the whole thing. A week or so later I received two emails, asking if I could help, since they had problems with their sites - no matter what they did they could not get their sites to a good position. Following is my letter to them - and perhaps it can be useful to another Newbie, like me:</p>
<p>&#8216;Hi there! Thanks for your reply. I will try to help you. I am in a marketing company called Veretekk and we are currently (around 35 of us) participating in a Company contest for top ranking on Google. Go to this address: eBiz-IQ.com&#8221;, and get loads and loads of highest expertise info on how to reach ranking # 1 on the world&#8217;s largest search engine (Google). There you will find recorded training sessions, lots, and lots of professional practical information for marketing and for pushing your site to a top position, among other a technique called &#8220;Daisy Chaining&#8221;, about linking your ads for a number 1 position. Listen especially to the recorded trainings of Veretekk CEO Thomas Prendergast.</p>
<p>If you want to have even more info, go to: inilsson.veretekk.com, at &#8220;Veretraining&#8221; (also free), to the &#8220;Conference&#8221;. It is live online training sessions on high quality marketing strategies. For example the &#8220;Guerilla Marketing&#8221;, also free. Trainings are at any time of your choice (24/7 for your convenience), at different levels, from beginner&#8217;s to very advanced, depending on where you are in your marketing business. I guarantee that it is super high quality and with the absolute best teacher&#8217;s of the Internet (Company is part of Inetekk Inc. based in San Diego, California US) - and it is all free.</p>
<p>Here you will also find a completely automated engineered marketing system (by the founders: the CEO and the President, Thomas Prendergast and Michael Darling), also free. For all of this you go to: inlsson.veretekk.com. You sign up absolutely free with no strings attached.</p>
<p>Another very high quality website is: barefootmentor.tblog.com, also absolutely free, with lots and lots of free training right there on the site. I somewhat know the teacher - she is quite amazing.</p>
<p>Then get back to me, and I will give you more information and other free sites for how to push your website to the top. If you would choose to go to the Veretekk site I mentioned above, I could even call or Skype (free internet phone) you, and guide you through some of the Veretekk marketing system, right there and then, simultaneously, if you have your computer on and nearby the phone.</p>
<p>On the other hand, I can send you more info via mail, whatever you prefer - it is all free. I am just another marketer on the internet (Newbie), but believe in empowering each other and help each other; it will be good for everyone. Kind regards Inger Nilsson</p>
<p>If you have any other questions, or if you do not feel this info suits you and you want additional information, feel free to email me back.&#8217;</p>
<p class="articletext">&nbsp;</p>
<p>Inger (Ike) Nilsson<br />
Worked freelance in Publishing and Media since 1988. She has a M.A in Film, Literature and Art History from the University of Lund, Sweden. She is a degree Project Manager and was a student of Malmö University K3 in Film Production and Editing. She attended Art Schools and worked as an independent artist before embarking in publishing.</p>
]]></content:encoded>
			<wfw:commentRss>http://ica-master.org/2007/10/02/on-newbie-matters/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Choosing The Right Domain Name</title>
		<link>http://ica-master.org/2007/09/30/choosing-the-right-domain-name/</link>
		<comments>http://ica-master.org/2007/09/30/choosing-the-right-domain-name/#comments</comments>
		<pubDate>Sun, 30 Sep 2007 13:40:24 +0000</pubDate>
		<dc:creator>Designer</dc:creator>
		
		<category><![CDATA[Web Design Basics]]></category>

		<guid isPermaLink="false">http://ica-master.org/2007/09/30/choosing-the-right-domain-name/</guid>
		<description><![CDATA[ Many people got lucky and sold their domain for unbelievable prices. Was that pure luck? Or was there something that we still don&#8217;t know? Is there still domain-gold left in the already mined domain market, to lay our hands on? Lets see.
First of all what we will look in some of the main reasons [...]]]></description>
			<content:encoded><![CDATA[<p class="articletext"> Many people got lucky and sold their domain for unbelievable prices. Was that pure luck? Or was there something that we still don&#8217;t know? Is there still domain-gold left in the already mined domain market, to lay our hands on? Lets see.</p>
<p>First of all what we will look in some of the main reasons which makes a domain priceless and sellable.</p>
<p># Generic or Day to Day life words.</p>
<p># Their extensions weather it is .com or .net. Its popularity. (Right now .com)</p>
<p># Less characters. (Say 4 or 5 at most)</p>
<p># Their pronunciation. (Don&#8217;t say epdu or something else it is not pronounceable)</p>
<p># The keyboard relationship. (It would be easier to type in &#8220;tyru&#8221; instead of &#8220;oqzk&#8221;. Some companies who wants brandable names see this)</p>
<p>Now If we look into the very first point about generic or day to day life words most of them are taken. So how to find some other? Here is the tip. Just try and sit with a pen and paper when you are watching television. Write down the words that you think might be available as a domain name. You can do the same when you are reading some novel or newspaper. This trick surely pays I got many of my domains watching &#8220;Terminator&#8221; and &#8220;Home Alone&#8221; kind of movies.</p>
<p>Now the extension. If you have found out a great word which is already registered with .com extension. Then you can try other TLD&#8217;s. But in this you run into some kind of risk. You can surely reg &#8220;fast.net&#8221; &amp; &#8220;Love.net&#8221; but you can&#8217;t bet your money on &#8220;babyboydomains.net&#8221; or &#8220;Simplyrockingnames.org&#8221;. So just apply some thinking over here.</p>
<p>Talking about less characters If you find a 3 letter name then just pounce on it. It really has the market. But there are none available right now. So look for 4 or 5 character names. Apply all our rules that we saw before and even then if it passes through all that steps without a hitch then take it in.</p>
<p>Pronounceable or not is also a factor. If you know english language, which I think you will be knowing as you are reading this article then there are no problems. For those who are weak at english they can try http://www.thesaurus.com or any other dictionaries which are available online to look for that name.</p>
<p>Don&#8217;t get discouraged if your word is not listed in it. You can surely ask some other guy on chat who is not interested in domains about this word. Otherwise the guy to whom you are asking may reg it before you and all your dreams might get shattered into pieces.</p>
<p>The last but not the least is the keyboard relationship. Some companies may look into it. If they are willing to spend their millions for this domain and other millions for marketing it and making it into a brand. You can try this. some words are just a flick on keyboard. As I said before &#8220;tyru&#8221; is easy to type in. while oqzk is a bit tougher. Just try it and see the difference.</p>
<p class="articletext">&nbsp;</p>
<p class="articletext"> For more tips like this and to sell your Priceless domains logon to:- Nameslot.com ©2005 Nameslot.com You can reprint this article but the content and copyrights should stay intact.</p>
]]></content:encoded>
			<wfw:commentRss>http://ica-master.org/2007/09/30/choosing-the-right-domain-name/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Simple Ways to Build Your Internet Business into Tower of Profits</title>
		<link>http://ica-master.org/2007/09/28/simple-ways-to-build-your-internet-business-into-tower-of-profits/</link>
		<comments>http://ica-master.org/2007/09/28/simple-ways-to-build-your-internet-business-into-tower-of-profits/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 13:39:27 +0000</pubDate>
		<dc:creator>Designer</dc:creator>
		
		<category><![CDATA[Internet Marketing]]></category>

		<guid isPermaLink="false">http://ica-master.org/2007/09/28/simple-ways-to-build-your-internet-business-into-tower-of-profits/</guid>
		<description><![CDATA[ Are you earning enough now in your internet business? Are you satisfied with the results of your sales? Or are you just starting up and worrying already how you will generate revenue with your internet business? Are you freaking out if you&#8217;ll really make it with your internet business?
The competition is becoming tougher. Millions [...]]]></description>
			<content:encoded><![CDATA[<p class="articletext"> Are you earning enough now in your internet business? Are you satisfied with the results of your sales? Or are you just starting up and worrying already how you will generate revenue with your internet business? Are you freaking out if you&#8217;ll really make it with your internet business?</p>
<p>The competition is becoming tougher. Millions are online, but hundreds and thousands of internet businesses are also out there. Customers are able to demand more because they know there are many alternatives out there for them. With so many others to struggle with and against, how will you stand out? How will you make it with flying colors to the top?</p>
<p>Let us count the ways to earn towers of profit!</p>
<p>1. Website Development Is a Must!</p>
<p>Design</p>
<p>The appearance and content of the site must be pleasant enough to attract people to read on and buy.</p>
<p>Don&#8217;t mess up your page with too much information. The message may not get across if there are too many confusing details seen in your page.</p>
<p>The page must load easily. The text and graphics should be clearly viewed. It should not be too large that would make the clients impatient. They might not choose to wait.</p>
<p>Make sure also that your site don&#8217;t look cheap. Visitors might not take your website seriously if it is too plain and if the designs are screaming. Win the trust of your visitors and clients by making your website look as if it had been invested upon. Impression says a lot about your credibility to make a sale.</p>
<p>Content</p>
<p>If you have a product or service to sell, it must be on the page. The product information and price must be seen right away. Bank on the total packaging of your product to do the sales talk for you. Give direct to the point. Emphasize on the edge of your product or sales from the rest. Tell right away whether you have lower prices, higher quality, desirable services or better incentives. Promotions, freebies and contests would also stimulate the interest of the clients and visitors.</p>
<p>2. Promotions</p>
<p>Register on search engines</p>
<p>People use search engines when looking for something they need. It is a must that you are out there when they look for your product or service. Register on top search engines.</p>
<p>Publicize</p>
<p>Use the link to your website as your signature when you send out messages to your friends and to your mailing list. Use the signature also when posting in forums or newsgroups.</p>
<p>Publish announcements and articles. Make your presence felt in that part of the online community that shares interest in your products or services. Utilize also traditional and offline means of promoting like including your website address in your business cards, stationeries, and company letterheads.</p>
<p>3. Pursue Other Means to Additional Revenue</p>
<p>Affiliates programs</p>
<p>Through affiliate programs, other people can sell their products or services on your website. By simply linking to another website that sells merchandise intimately related to yours. They will do all the hassles of handling and collection and you get part of the profits.</p>
<p>Host paid ads</p>
<p>You get paid when hosting internet advertisements on your webpage. Each time an ad or banner is shown or someone clicks on that ad or banner, money comes in. Several companies online will be willing enough to match your website with the advertisers. Just make sure that you properly delineated the conditions and terms of payment before signing up. It is just usual surfing for your visitors. They would read, they would click, they may not buy, but you still get to earn.</p>
<p>Searchboxes</p>
<p>Locate for search engines that pay to have their searchboxes included in your website. Whenever a search was made using their engine from your website you earn extra money without stress.</p>
<p>4. Think</p>
<p>Think of what else you can do and how you can do it. You&#8217;ll never know the next challenge in store for you out there.</p>
<p>Foresee whatever difficulty you could possibly encounter. Consider the strengths of your strategies. Focus and improve on those strengths.</p>
<p>Think of new skills that you need to learn. Are there new technologies developing out there? Is there still a need for my commodity? Or are their needs changing? Do I have to change something in my product or services? Do I have to do some repackaging? Enhance on the new skills or features that you need to concentrate on.</p>
<p>In this ever changing world, you have to be responsive to the needs and demands. Know what sells, how to sell, where to sell and when to sell. Answering these questions will help you now. But knowing why you sell, the desire to be successful, to earn profits and to make your services available out there will help you sustain a momentum that will keep money coming in.</p>
<p class="articletext">&nbsp;</p>
<p>Daegan Smith is the leader of the fastest growing team of successful home business enterpernuers on the net. Find out how we&#8217;re creating financial freedom all across the globe and how to get in on the action FREE at www.comlev.net<br />
View their website at: netmlmprofit.com</p>
]]></content:encoded>
			<wfw:commentRss>http://ica-master.org/2007/09/28/simple-ways-to-build-your-internet-business-into-tower-of-profits/feed/</wfw:commentRss>
		</item>
		<item>
		<title>An internet marketing strategy that works&#8230; every time!</title>
		<link>http://ica-master.org/2007/09/26/an-internet-marketing-strategy-that-works-every-time/</link>
		<comments>http://ica-master.org/2007/09/26/an-internet-marketing-strategy-that-works-every-time/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 13:38:09 +0000</pubDate>
		<dc:creator>Designer</dc:creator>
		
		<category><![CDATA[Internet Marketing]]></category>

		<guid isPermaLink="false">http://ica-master.org/2007/09/26/an-internet-marketing-strategy-that-works-every-time/</guid>
		<description><![CDATA[ Have you ever wanted to buy something more than do anything else in the world at that moment?
As you think about that feeling while you&#8217;re reading this, you&#8217;ll probably realize that it wasn&#8217;t really something you needed&#8230;
It was more of something you &#8220;just had to have&#8221;, something that created certain feelings inside you. Something [...]]]></description>
			<content:encoded><![CDATA[<p class="articletext"> Have you ever wanted to buy something more than do anything else in the world at that moment?</p>
<p>As you think about that feeling while you&#8217;re reading this, you&#8217;ll probably realize that it wasn&#8217;t really something you needed&#8230;</p>
<p>It was more of something you &#8220;just had to have&#8221;, something that created certain feelings inside you. Something where you could see yourself owning it and feeling that certain special way you really like to feel. You might also state to yourself all the benefits of you owning what you&#8217;re about to buy, looking back on this moment and thinking to yourself &#8220;Buying this product was one of the best decisions in my life!&#8221;</p>
<p>It was that feeling that created your desire, your decision to buy this product right now. The bottom line: You don&#8217;t buy what you need &#8212; you buy what you want&#8230;</p>
<p>If you even further analyze your decision, you probably bought that because you trusted the person or company selling it.</p>
<p>So, to recap, these are the things that make a buying decision:</p>
<p>* Trust for the seller<br />
* Feelings created when considering to buy &#8212; these can be triggered by stating the benefits, creating pictures in the mind of your prospects&#8230;)</p>
<p>So, how does this relate to affiliate marketing?</p>
<p>Well, if the job of a webmaster is to sell a product, a job of an affiliate is to presell the products and to direct potential prospects towards that product&#8230;</p>
<p>Quite simple. But 99.9% of all affiliates fail to recognise that. Furthermore, preselling is done in a similar way as selling. So in order for your prospects to be presold and to follow the link you recommend, you have to:</p>
<p>a.) Earn their trust<br />
b.) Give an effective presentation</p>
<p>OK, that is obvious, but the purpose of this article is to give you a clear blueprint of an excellent internet marketing strategy that will tell you exactly how do you earn their trust to be able to give an effective presentation&#8230;</p>
<p>There&#8217;s a certain rule in persuasion that states: &#8220;The more times a person sees you, the more your face value goes up (they find you more attractive)&#8221;.</p>
<p>Another fact comes to mind here: &#8220;A person perceived as more attractive enjoys more trust with people and is perceived as more honest&#8221;. Hmmmm, I wonder how we could tie these together&#8230;</p>
<p>The answer is&#8230;</p>
<p>Have a way on your web site to gather your visitor&#8217;s name and e-mail address. Then contact them on about weekly basis (every 5-7 days). Make sure you write quality articles and that you put your face in front of them (photograph). You can do that easily with HTML emails or if you send them a link to your site where you have a nice picture of you set up.</p>
<p>Give your subscribers value before you try to sell them anything. I suggest you give them at least 7 valuable messages before you start promoting products. In those first 7 messages you&#8217;ll build and earn their trust. Plus you&#8217;ll have your &#8220;face value&#8221; go way up, thus appearing more attractive and more trustworthy.</p>
<p>Best of all is that you can completely automate this process by setting up an autoresponder sequence. You set it up once and forget about it. Focus on other things, like how to get more visitors/subscribers to my site?</p>
<p>By far the best autoresponder I&#8217;ve found and used is Aweber ( http://www.aweber.com/?209837)</p>
<p class="articletext">&nbsp;</p>
<p>Get awesome, no B.S. internet marketing tips every week to propel your business into staggering heights and to finally be able to cash in those long awaited checks. Follow this link: web site marketing (insidemarketing.blogspot.com) and subscribe to the marketing newsletter.<br />
View their website at: insidemarketing.blogspot.com</p>
]]></content:encoded>
			<wfw:commentRss>http://ica-master.org/2007/09/26/an-internet-marketing-strategy-that-works-every-time/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to turn your Web Site into a Free lead Generation Machine</title>
		<link>http://ica-master.org/2007/09/22/how-to-turn-your-web-site-into-a-free-lead-generation-machine/</link>
		<comments>http://ica-master.org/2007/09/22/how-to-turn-your-web-site-into-a-free-lead-generation-machine/#comments</comments>
		<pubDate>Sat, 22 Sep 2007 13:36:40 +0000</pubDate>
		<dc:creator>Designer</dc:creator>
		
		<category><![CDATA[Increase Effectiveness]]></category>

		<guid isPermaLink="false">http://ica-master.org/2007/09/22/how-to-turn-your-web-site-into-a-free-lead-generation-machine/</guid>
		<description><![CDATA[ Websites, needless to say, are here to say. Relatively affordable to operate and has a global reach, websites can help you expand your business operations. There are cases that in fact, websites, can be your main source for a new venture. It seems natural for businesses, no matter how big or small they are, [...]]]></description>
			<content:encoded><![CDATA[<p class="articletext"> Websites, needless to say, are here to say. Relatively affordable to operate and has a global reach, websites can help you expand your business operations. There are cases that in fact, websites, can be your main source for a new venture. It seems natural for businesses, no matter how big or small they are, to have websites to keep consumers informed and updated on the products and services that they have.</p>
<p>There is one big problem however. How come there are websites that actually help businesses to sell its products and services yet at the same time, there are those that remain unknown to consumers and drain the businesses’ money, instead of helping them earn additionally?</p>
<p>For many businesses that own websites, this is their question: How come their websites do not attract potential consumers and serve as additional source of revenue? Aren’t websites built precisely for that?</p>
<p>For many businesses with web sites, these online resources are built for a variety of reasons, among them:</p>
<p>• Get, as many as possible, prospects for its products;</p>
<p>• Help businesses create a short list of prospective consumers;</p>
<p>• Turning prospective online surfers to stop being just that – prospective surfers – and actually buy products and services from businesses; and</p>
<p>• Ultimately, turn these clients to purchase products and services from businesses on a continuing and long-term basis.</p>
<p>If, for example, your website actually is meeting all the said functions above, then great! Your website actually helps your income. But if it is not, then probably it is the best time to review or evaluate your website’s problems and reasons for not doing so.</p>
<p>Countless marketing websites offer various products and services that say they could help your website to be a top lead generation machine (that is, your website draws “leads” or sales from online consumers). Although, these websites may offer genuine and helpful information to you, most of these products and services are expensive and seem to provide general information on how to improve you website’s lead generation capabilities.</p>
<p>Actually, you can improve your website on your own. You are responsible for the success or failure of your website. With these tips below, you can start improving your website’s sales potential.</p>
<p>1. Is the nature of your business or company, including your products and services, immediately available to the website?</p>
<p>The website has to immediately and clearly state what your business or company is. Information on the products and services you sell should be immediately available. Otherwise, why would someone take his or her time to look at your site? It would be a waste of time if an online prospect is having a hard time looking for a product or service information. The longer he or she lingers around your website looking how much a product costs, the lesser the chances of buying that product.</p>
<p>You also have to state on your location. Are you based in just one state? In another country? What if for example, someone orders a product halfway around the world, is it possible? And how much the cost would be?</p>
<p>Are your links, both text and images, working? If someone clicks on a link, would that link go to the webpage that he or she is most likely looking for? Or is it not? Worse, you have linking errors?</p>
<p>2. What is the selling proposition of your business or your company? Is it clear in the website?</p>
<p>Prospects should know why choosing your business is the best choice compared with others. What are the reasons someone would buy your product or service compared with your competitor? Are these reasons reflected in the website? How do you substantiate your claims? If you got testimonies or experts praising your product or service, you have to show that they are credible endorsers? Explain in the website the necessary experience and knowledge of these people. Give your users their credentials. In that way, they know that they can trust with your company, and possibly, purchase your goods.</p>
<p>If there are any, show the awards or certifications received by your business or company from consumer or industry associations.</p>
<p>3. Does the website offer additional information or resources if a customer buys something from your company or business?</p>
<p>These are added come-ons for customers. Services like technical or administrative customer support in the website, if available, should be clearly stated in the website. This will give an assurance to customers that if something goes wrong with a product or service they purchased, they could easily contact you via the website.</p>
<p>Make them an offer they can&#8217;t refuse<br />
If you want your prospects to respond, you have to give them a convincing reason to do so. Keep the phrase &#8220;what&#8217;s in it for me?&#8221; in mind as you&#8217;re writing your ad&#8217;s call to action. It&#8217;s what your prospects are thinking as they decide whether or not they will take the time or effort to respond. It will have a noticeable effect on B2B sales leads generation.<br />
Consider offering application notes showing how other buyers solved their problems using your product or service.</p>
<p>Offering a useful premium or advertising specialty can also significantly increase the number of responses. However, try to make sure your offer is of interest only to qualified prospects. For example, a tool for sizing rings would be an attractive offer only to people who use rings. However, everyone might want a free pocket screwdriver set and inquire only to get it, not because they have a need for your product or service.</p>
<p>Many of your prospects may want to try your product before they buy it. If you can cost-effectively offer samples or a demonstration CD, you will generate more inquiries as part of your B2B sales leads generation program.</p>
<p>4. Offer consumers features and add-ons that would entice them to buy</p>
<p>Convince your prospects that they need to buy your product or service. Tell them that they need or want this product or service. Explain how other users benefited from it. In that way, they become convinced the capability of your product or service and hopefully buy it. Consider offering application notes showing how other buyers solved their problems using your product or service.</p>
<p>5. Is ordering in the website hassle-free?</p>
<p>Try to make ordering in your website as hassle- and worry-free as possible. Surfing should be as smooth as possible. No complicated ordering forms as well as processes. Is payment information stored for future buyers?</p>
<p>6. Is your company or business accessible enough for consumers?</p>
<p>Contact information of your company or business should be in the website. And this does not mean just electronic mail. Telephone numbers, feedback forms, among others, should be easily available on the site.</p>
<p>7. Good writing is the key.</p>
<p>Of course, any good website means good writing. Write clear and simple. Focus on your market’s needs and wants. Try to get to them that going to your website is not a worthless thing to do.</p>
<p>These tips, when used, can help your website into a more active sales generator for you.</p>
<p class="articletext">&nbsp;</p>
<p class="articletext"> Daegan Smith is the leader of the fastest growing team of successful home business enterpernuers on the net. Find out how we&#8217;re creating financial freedom all across the globe and how to get in on the action FREE at www.comlev.net</p>
]]></content:encoded>
			<wfw:commentRss>http://ica-master.org/2007/09/22/how-to-turn-your-web-site-into-a-free-lead-generation-machine/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What Does FEMATM Have to Do with Your Company’s Website?</title>
		<link>http://ica-master.org/2007/09/20/what-does-fematm-have-to-do-with-your-company%e2%80%99s-website/</link>
		<comments>http://ica-master.org/2007/09/20/what-does-fematm-have-to-do-with-your-company%e2%80%99s-website/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 13:33:35 +0000</pubDate>
		<dc:creator>Designer</dc:creator>
		
		<category><![CDATA[Website Tips]]></category>

		<guid isPermaLink="false">http://ica-master.org/2007/09/20/what-does-fematm-have-to-do-with-your-company%e2%80%99s-website/</guid>
		<description><![CDATA[One of the most common questions I get is “how can I get more traffic to our website?” Most companies by now are aware of how many dollars are shifting daily to Internet advertising and that 80% of America’s consumers and businesses look for even local services on the Web.
But asking how to get more [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most common questions I get is “how can I get more traffic to our website?” Most companies by now are aware of how many dollars are shifting daily to Internet advertising and that 80% of America’s consumers and businesses look for even local services on the Web.</p>
<p>But asking how to get more traffic to your website is like asking “where do I put the gasoline” before asking “which car should I buy?”</p>
<p>The Web can be a great, cost-effective way to find customers and to help customers find you. But before you move too fast into the world of on-line advertising (aka pay-per-click or PPC) or “Search Engine Optimization” (SEO) both of which are designed to get buyers to your website, first ask yourself, “if they come, what will they do there?”</p>
<p>In the past, if you advertised using traditional means, and got the buyer to pick up the phone and call, you were a big step of the way to getting the business. That is not true in the age of the Internet. The process of dialing a phone, involved a psychological commitment to the effort. The buyer had already made a “selection.”</p>
<p>There is no psychological commitment in a click.</p>
<p>In the “insta-click” mentality of the Internet, with so much junk to wade through, searchers general begin with the conscious or subconscious notion that their click will likely yield a bad result. Next time you watch someone shopping the web, watch where they place their mouse after clicking a search result. Very often they move the mouse to top left, hovering over the ‘Back Button” - ready to go back to the million of other search results.</p>
<p>The point is, it is a waste of ad money if you get searchers to your site, but they don’t stay long enough to consider you and your proposition, to say nothing of taking the action you want them to take.</p>
<p>Almost every business should be seeking to expand on the Web, that is clear. But it is not enough just to create any old website and toss it up on the Internet. If you are going to invest in getting customers to your website, invest in keeping them there.</p>
<p>We follow four simple principles in our web design – what we call the FEMATM principles [the coincidental acronym has nothing to do with the Federal agency]:</p>
<p>You never get a second chance to make a first impression<br />
&#8230;Anon</p>
<p>First Impression: Before people think they react. The website must make a solid first impression. Unique custom designs should be employed which effectively represent the organization. Color, shape, animation, all designed to engage, so as to keep the visitor from clicking the ‘back button” and hold them long enough to formulate an emotion. How long is this? One to five seconds on average.</p>
<p>Get to the WIFM (&#8221;what&#8217;s in it for me&#8221;) fast!</p>
<p>Though the Internet is still in its infancy, it is already well understood that the key to success is at least hinting at what your value will be - FAST. Too often, websites begin with the assumption that the visitor knows what the business of the company is. In a brick and mortar world that assumption might be safe. On the Web, if a user doesn&#8217;t get it in seconds from your home page, he&#8217;s a click away from the search results that brought him there. Thus, the purpose and the vision of the website has to be clear from the start.</p>
<p>“Any emotion, if it is sincere, is involuntary”<br />
&#8230;Mark Twain</p>
<p>Emotion: Depending on the business objectives of the website, color, look, feel, motion, all must be used to garner the proper emotion appropriate to the site’s goals - design to hold the visitor long enough so he begins to “get the message”. How long is this? A few more seconds.</p>
<p>&#8220;It&#8217;s not our fault our generation has short attention spans, Dad. We watch an appalling amount of TV.&#8221;<br />
&#8230;Lisa Simpson</p>
<p>Message: Message only comes if first impression and emotion have done their job. Content must be designed for maximum usability, ease-of-navigation with language and images ideally designed around each target audience.</p>
<p>Content must be high quality and served up in easy-to-digest, approachable content chunks, designed to be attractive and inviting (not long and intimidating).The insta-click mentality does not necessarily mean that to be successful content needs to be restricted to sound bites. But it does mean that even more thought and attention must be given to each word and phrase as well as page placement, etc.</p>
<p>The fact is, in our world of information overload, people do have shorter attention spans. We are more successful if we recognize that and work with it. Design that keeps visitors happy and engaged, makes websites more effective. As most US businesses migrate to broadband, the use of novel interactive elements can be employed to present the message and further engage the audience. However, all such elements must be appropriate to the site’s business objectives.</p>
<p>“I never worry about action, but only about inaction”<br />
&#8230;Winston Churchill</p>
<p>Action: The desired action(s) should be obvious and easy to take from almost any point on the website. Action can come in many forms. For most clients this includes making contact - a phone call, an email, live chat, etc. For others, action may include an e-commerce purchase from the website or a donation to a non-profit cause. But another big use of the Internet is to easily empower friends to help friends! So referring (i.e. emailing a page) to a friend can also be a very important action for the website. The whole equation only comes together when the desired action is taken.</p>
<p>FEMATM principles are not only for e-commerce websites. All businesses and organizations should consider the fact that their websites are the first place buyers, sellers, investors, career candidates and virtually everyone else go to get information. In the old economy, great thought and money went into making the “front office” make the right first impression (remember Arthur Andersen’s famous mahogany doors?). In the new economy, this all must now be directed to the company’s new “front office” – their corporate website.</p>
<p>About AxxiemCorp</p>
<p>Based in Westchester, NY, Axxiem’s business consultants team with its designers, content writers, SEO specialists, and project managers to produce radically different websites for its commercial clients. Websites with solid business objectives, designed to attract the right audience and achieve real, bottomline results.</p>
<p>In addition to its New York-based staff, Axxiem has a design, programming and build team in New Delhi, India, able to provide everything from basic HTML coding to custom database development and custom application development.</p>
<p>http://www.axxiem.com<br />
Susan M.H. Lewenz<br />
President, AxxiemCorp</p>
]]></content:encoded>
			<wfw:commentRss>http://ica-master.org/2007/09/20/what-does-fematm-have-to-do-with-your-company%e2%80%99s-website/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
