Internet Marketing by Carmen Maranon
main | blog | ezine | plug-n-go web biz | podcast | v-blog | members | ask carmen! | carmen approved | forumhelpdesk

Subscribe to My Weekly Marketing Journal...Name:E-mail:

Here are the Most Frequently Asked Questions I'm asked about Internet Marketing and Doing Business On The Internet... but with a cool twist. Not only will you read *my* solutions, but you will also have the read answers from other Internet marketers of all levels (newbies, intermediate & pro's), based on their personal experiences.

If you see a question that YOU have answers to, feel free to login and submit your answer! You must first register to post, but it's free and takes only a minute! If you would like to submit a question for consideration for this wiki, e-mail me with subject "AskCarmen Question."


Question: How can I get people to visit my website?


Answer:

#1) Articles: I write articles with my resource box including my name, brief info about me, and URL tagged on at the end. I submit them to article directories as well as give ezine publishers permission to reprint them. It helps build credibility and name recognition, and readers click on my URL to check out what else I have to offer.

#2) List Building: I publish my weekly ezine, http://journal.marketingchick.com, where I update my readers with fresh marketing news and editorials, as well as introduce my services, and 3rd party products and services that I highly recommend. I encourage my readers to tell their friends and associates about my ezine. I even offer an affiliate program rewarding website owners free ad exposure for every few thousand new subscribers they send my way.

#3) Reports/Ebooks: I have a “5-Day Crash Course” available for free on my website, and contribute to ebooks published by other marketers.

#4) Viral Marketing: I’ve written several reports (only one is marketing related) that I grant others permission to distribute for free, as well as “brand” the included links with their own affiliate information. Offering a branded version of my products motivates others to share my report with their website visitors and newsletter subscribers.

#4) Forums: I participate in a few online discussion forums where I offer free help and advice. It gives others a taste of what I can do for them : )

#5) Signature Lines: I add my name, autoresponder and website address, along with a short blurb at the end of e-mail messages and forum postings.

#5) Testimonials: When I’m blown away by a product or service I’ve purchased, I’ll send the owner a quick note of appreciation, and give them permission to use it as a testimonial on their website and sales copy.

#6) Free Advice: I give visitors the opportunity to submit a free marketing question at http://www.AskCarmen.net, where I choose the most asked questions during that week and answer them in that week’s issue of AimDIRECT Ezine.

#7) Pay Per Click Advertising: I don’t have the patience to learn how to optimize my sites for high search engine rankings, so, I use pay per click. It will cost you a couple of cents for each click, but, if you know how to look for and choose the right key phrases, as well as write short ads that can prequalify your visitors, it’s very powerful!

#8) Joint Ventures: This is one of the quickest ways to make a profit, if done correctly. It’s basically having someone endorse your products in exchange for a cut of the profits. Find people with strong relationships with their clients and subscribers, and “borrow” their audience and credibility. Although that same audience may not buy directly from you because you haven’t yet earned their trust, they’re more likely to take action based on the recommendation of someone they’ve grown to trust.

#9) Offline Marketing: I place classified ads displaying my website address in tabloid and business opportunity magazines, as well as self employment newsletters. Contrary to popular belief, not everybody surfs the web as much as we do! Go to your local library and look at the ads listed in those publications. If you see the same ad issue after issue, it’s a sure sign they’re getting a good return on their investment (ROI) to continue investing their money back into that publication.





Question: Simple Drop Down Navigation Menu

Filed under: Web Design & Develop

Answer:

Redirect your website visitors with this simple drop down navigation menu that will automagically take them to their selected page without having to click on submit!

Just put the following script where you’d like your menu to appear. Add as many links as you like! Be sure to include the full URL (ie. http://www.othersitelink.com) if you are linking to pages outside your own website.

<!— begin BUTTON code here –>
<SCRIPT LANGUAGE=”JavaScript”>
function AutoLink()
{
var number = document.FormAdvance.WebLink.selectedIndex;
location.href = document.FormAdvance.WebLink.options[number].value;
}
</SCRIPT>

<FORM NAME=”FormAdvance”>
<SELECT NAME=”WebLink” onChange=”AutoLink(this.form)” >
<OPTION SELECTED>Select from below!
<OPTION VALUE=”page1.html”> Page One
<OPTION VALUE=”page2.html”> Page Two
<OPTION VALUE=”http://www.othersitelink.com”> Page Three
</SELECT>
</FORM>
<!— end LINK code here –>

Question: Adding a “Close Window” button

Filed under: Web Design & Develop

Answer:

Simply place the button or link code where you would like it to appear. (Seems to work only in IE)

<!— begin BUTTON code here –>
<form method=”post”><input type=”button” value=”Close Window” onclick=”window.close()”></form>
<!— end BUTTON code here –>

<!— begin LINK code here –>
<a xhref=”javascript: self.close()”>Close Window</a>
<!— end LINK code here –>

SAMPLE:

Button code:

Link code:
Close Window

Question: Changing the Style of Your Bullets in Your List.

Filed under: Web Design & Develop

Answer:

When creating a list on your website, you can change the style of your bullets by adding attributes to your <LI> tag. You can even use images as bullets!

LIST TYPE 1: Code

  • List item 1
  • List item 2
  • List item 3

LIST TYPE 2: Code

  • Your text goes here
    • Your text goes here
    • Your text goes here
    • Your text goes here
  • Your text goes here
  • Your text goes here

LIST TYPE 3: Code

  1. List item 1
  2. List item 2
  3. List item 3

LIST TYPE 4: Code

  1. List item 1
  2. List item 2
  3. List item 3

LIST TYPE 5: Code

  1. List item 1
  2. List item 2
  3. List item 3

LIST TYPE 6: Code

  • List item 1
  • List item 2
  • List item 3

Question: “Back to Previous Page” button and link

Filed under: Web Design & Develop

Answer:

Place the button or link code where you would like it to appear.

<!— begin BUTTON code here –>
<form><input type=”button” value=”Back” onClick=”javascript: history.go(-1)”></form>
<!— end BUTTON code here –>

<!— begin LINK code here –>
<a xhref=”javascript: history.go(-1)”>Back</a>
<!— end LINK code here –>

SAMPLE:

Button code: Link code:
Back