• Straight From The Horses Mouth – Get Googlized

    Date: 2011.02.24 | Category: Search Engine Optimization | Response: 0

    Many webmasters wonder how to ensure their sites will be included in Google’s index of web sites. Although Google crawls more than a billion pages, it’s inevitable some sites will be missed. When Google does miss a site, it’s frequently for one of these reasons:

    * The site is not well connected through multiple links to others on the web.
    * The site launched after Google’s last crawl was completed.
    * The design of the site makes it difficult for Google to effectively crawl its content (excessive frames, tables, etc).

    Google’s intent is to represent the content of the Internet fairly and accurately. To help make that goal a reality, we offer this guide to building a “crawler-friendly” site. There are no guarantees a site will be found by our crawler, but following these guidelines should increase the probability that your site will show up in Google search results.

    Do…
    Provide high-quality content on your page – especially your home page.
    If you follow only one tip from this page, this should be it. Our crawler indexes web pages by analyzing the content of the pages themselves. Google will index your site better if your pages contain useful information. Plus, your site has a better chance of becoming a favorite among web surfers and being linked to by others if the information it contains is relevant and useful.

    Submit your site to the appropriate category in a web directory.
    Listing your site in the Open Directory Project http://www.dmoz.org/ or Yahoo! http://www.yahoo.com/ increases the likelihood it will be seen by robot crawlers and web surfers.

    Pay attention to HTML conventions.

    Make sure that your <TITLE> and <ALT> tags are accurate and descriptive. Also, check your <A HREF> tags for errors since broken or improperly formatted links can prevent Google from indexing your page.

    Make use of the robots.txt file on your web server.
    This file tells crawlers which directories can or cannot be crawled. Make sure it’s current for your site so that you don’t accidentally block our crawler. Visit: http://www.robotstxt.org/wc/faq.html for a FAQ answering questions regarding robots and how to control them once they visit your site.

    Ensure that your site is accessible through HTML hyperlinks.
    Generally, your site is crawlable if the pages are connected to each other with ordinary HTML links. If certain areas are not linked, you may be excluding older browsers, differently-abled users, and Google. Google can crawl content from a database or other dynamically generated content as long as it can be found by following links. If you have many unlinked pages, you may want to create a jump page from which the crawler can find all of your pages.

    Build your site with a logical link structure.
    A hierarchical link structure is not only beneficial to you, but also to Google. More of your site can be crawled if it is laid out in with a clear architecture.

    Don’t…
    Fill your page with lists of keywords, attempt to “cloak” pages, or put up “crawler only” pages.
    If your site contains pages, links or text that you do not intend visitors to see, Google considers them deceptive and may ignore your site.

    Feel obligated to purchase a search optimization service.
    Some companies “guarantee” your site a place near the top of a results page. While legitimate consulting firms can improve your site’s flow and content, others employ deceptive tactics to try and fool search engines. Be careful – if your domain is affiliated with one of these services, it could be permanently banned from our index, we have found search engine optimization software like Web Position Gold works best but, again use it in moderation.

    Use images to display important names, content or links.
    Our crawler does not recognize text contained in graphics.
    Use ALT tags if the main content and key words on your page cannot be formatted in regular HTML.

    Provide multiple copies of a page under different URLs
    Many sites offer text-only or printer-friendly versions of pages that contain the same content as the graphic-enriched version of the page. While Google crawls these pages, duplicates are removed from our index. In order to ensure that we have the desired version of your page, place the other versions in separate directories and use the robots.txt file to block our crawler.

    Article written by a Google employee

  • Adding Images To Your Web Pages

    Date: 2011.02.21 | Category: WebDesign | Response: 0

    The Basics

    Adding Images To Your Web Pages – The Basics.

    So you have just got into the online adult business but don’t know your ass from your elbow, you have the simplistic stuff relating to HTML down but, you want to find out how you can start adding banners and images to your pages here is a quick guide to help you on your way.

    What Is An Image?

    The answer, is, believe it or not simple, An image is a picture on a page of your website. There are however, many way to display images on your site from the size of it to the overall effect you want the image to have on your HTML page and from borders around the image and many other things.

    However, I don’t want to blind you with information at the moment considering you need to actually know the basics of adding images before you can start using fancy styles and the likes.

    Adding A Basic Image.

    The HTML code to add an image on any HTML based page is a straight forward one however, before you can use this HTML tag you need to know where on your page you want the image to appear.

    Now that you have decided where you want your image to display you need to use the image tag, the HTML coding to place an image on your page should be IMG. Also, you will need to tell your page where you want the image to come from or, in other words, you need to tell it the source of the image you want to use the HTML tag to do this is SRC.

    For example, lets say you have an image called porn.gif (you need to include the extension in your SRC coding) you would display this image on your page using the following code:

    <IMG SRC=”porn.gif”>

    Simple huh?

    Well, actually, maybe not, for example, what do you put if the images you are linking to is NOT in the same location as the page you want it to appear on? That’s not a problem, all you need to do is use the FULL location of the image in your IMG HTML tag like this:

    <IMG SRC=”http://www.domain.com/images/porn.gif”>

    You should now be able to include images on your pages without any problems.

    Image Sizes.

    Ok we can now include an image on our pages but, what if we want to make this image fit the feel of the rest of our page / site, how do you manipulate the graphic to ‘look’ right?

    There are a number of ways images can be manipulated for example, if you want the image to be 100 pixels wide by 100 pixels high you can add the WIDTH and the HEIGHT tag to your HTML coding like this:

    <IMG SRC=”http://www.domain.com/images/porn.gif” WIDTH=”100″ HEIGHT=”100″>

    That will now resize your image into a square that is 100 pixels wide and high.

    Now we have the image on our page in the right size we require what else can we do with it? Read on..

    Borders + Colors.

    In addition to placing the image and resizing the image on our pages we can also add a border and, a border color to the mage to make it stand out if needed for example:

    <IMG SRC=”http://www.domain.com/images/porn.gif” WIDTH=”100″ HEIGHT=”100″ BORDER=”2″ BORDERCOLOR=”FF0000″>

    As you can see we have now added the two tags ‘BORDER’ and ‘BORDERCOLOR’. The first ‘BORDER’ tag tells your HTML what size of border you want around your image and, this can be any size you want to make the image stand out on your page. The second ‘BORDERCOLOR’ tag tells your HTML code what color you want the border to be again, this can be any color you like to match the rest of your sites pages.

    Linking An Image.

    In addition to resizing, adding borders and colors we can also link our image to a specific URL (the most common form of this is with banner advertising) and, if you want to link your image to a URL you would use the following coding:

    <A HREF=”http://www.sponsorsurl.com”><IMG SRC=”http://www.domain.com/images/porn.gif” BORDER=”2″ WIDTH=”100″ HEIGHT=”100″ BORDERCOLOR=”FF0000″>

    This will create an image that is 100×100 pixels in size, with a border size of 2 pixels in the color FF0000 that is linked to http://www.sponsorsurl.com

    Also, the order of the HTML tags we use is not important however, you should try to get used to arranging them in a certain way to make your work easier if it ever comes to editing your images.

    Hopefully this has been of use to you and you can now see that adding banners and images to your sites isn’t as daunting as you first thought.

    Article written by Lee.

  • Building Your Own Opt In Mailing List

    Date: 2011.02.21 | Category: Opt-in Mail | Response: 0

    Despite the constant launch of ‘new and improved’ email collection programs one of the more popular emails I receive each month ask how webmasters can actually start their own opt-in email list for surfers. Surprisingly enough, this is a fairly simple process and, should only realistically take a webmaster 10-15 minutes to have an opt-in email script installed.

    However, the second type of email I get from webmasters who have already installed one of these scripts is asking how they can ensure that surfers sign up to their lists this is what I will approach in this article.

    One of the easiest ways to make sure surfers join your opt0in list is to offer them a financial gain by doing so, I don’t mean you should literally pay them for their email address but, why not offer them something for free? A daily picture by email, free porn site access etc etc.

    The next biggest mistake I find are that webmasters simply place a collection box saying something like ‘enter your email address here for our newsletter’ and, lets be honest, it isn’t very enticing. Ideally you need to have a ‘headline’ that will catch the surfers attention and actually ‘make’ them want to join your list. Be specific yet be vague (bit hard I know) and you’ll soon see your list grow from one new subscriber a week to hundreds of them!

    The next thing you need to take into consideration is how quickly, not only your site, but the page with your collection box loads, if you are using a pop-up console, make sure it is heavy in text not graphics with the first words at the top not saying ‘free porn’ but a similar meaning text, everyone and their dog has seen the words ‘free porn’ on countless other porn sites. Yours NEEDS to stand out!

    You should use an effective title if you are going to be using pop-up windows for your email collection. in the title bar don’t have the window called ‘pop-up’ have it named appropriately for the niche you are trying to collect the surfers email address from. Make it relevant, make it concise.

    Balance the collection page, any type of page you build for your site should at least be appealing to the eye. Meaning that your fonts, colors and actual text need to contrast together perfectly. If you do use images on this page try to have them prominent yet not overbearing to the surfer.

    Offer a way to close a pop-up if this is what you are using to collect the emails after all, they (the surfer) may decide they don’t want to give you their email until they have seen what your site can offer. In the same way, make sure you have a link from your sites to your collection page so, if a surfer decides they do want to give you their email address they can do it without the need of closing your site and reloading it afresh.

    Overall however, the best rule you can follow is to keep to the point and keep it simple. This way you will gain the surfers attention quickly and easily and, the surfer will not be distracted from the main purpose of having them on your site – getting to your sponsor.

    Hopefully the information above will enable you to start having some more success with your traffic and, once you have the surfers email address make sure you treat it with the respect you would want your own to be treat with, an email address is a sacred thing to most surfers, if you Spam them daily they will leave your opt-in list quickly however, if you send them a ‘newsletter’ once a week / month filled with relevant information you will soon find your list growing exponentially.

    Article written by Lee.

  • Sample Adult Model Release Form

    Date: 2011.02.21 | Category: Forms & Contracts | Response: 0

    For many webmasters the option of being able to shoot their own content is a wholly viable one as such, you should ensure that the models you are using sign a suitable release form. Below we have set together a pretty industry standard model release form which you may duplicate if you so wish. European Webmasters would however, recommend that you get professional legal advice in respect of this matter and that this is no substitution for proper legal advice.

    I, (Please Print) ____________________ (Model), for good and valuable consideration, the receipt of which is acknowledged, give to [INSERT YOUR LEGAL NAME HERE] (Photographer), his legal representatives, successors, and all persons or corporations acting with his permission, unrestricted permission to copyright and/or use, and/or publish photographic portraits or pictures of me, and the negatives, transparencies, prints, or digital information pertaining to them, in still, single, multiple, moving or video format, or in which I may be included in whole or in part, or composite, or distorted in form, or reproductions thereof, in color or otherwise, made through any media in his studio or elsewhere for art, or any other lawful purpose.

    I hereby waive any right that I may have to inspect and approve the finished product or copy that may be used in connection with an image that the Photographer has taken of me, or the use to which it may be applied.

    I further release the Photographer, or others for whom he is acting, from any claims for remuneration associated with any form of damage, foreseen or unforeseen, associated with the proper commercial or artistic use of these images unless it can be shown that said reproduction was maliciously caused, produced and published for the sole purpose of subjecting me to conspicuous ridicule, scandal, reproach, scorn and indignity.

    I acknowledge that the photography session was conducted in a completely proper and highly professional manner, and this release was willingly signed at its termination.

    I certify that I am not a minor under the laws where I live, and am free and able to give such consent.

    Model’s signature:_________________________ day___/month___/year_____ Address:___________________________________ City:______________________________________ State/Province:______________________________ Country:___________________________________
    Zip/Postal Code:_____________________________
    Country area code and home telephone number:(______)____________________________
    Witness (non family member):___________________________________
    Witness (non family member):___________________________________
    This form will be retained with the negatives, transparencies, digital media, and/or contact sheets. day___/month___/year_____ {INSERT YOUR LEGAL NAME HERE}.

    The above model release form is to be used as a mere example form and, when entering into any contractual agreement with any model for photographic / video work you should always seek proper legal advice.

    Article written by Lee.

  • Penis Enlargement Pills

    Date: 2011.02.24 | Category: Sponsors | Response: 0

    Well if you’re a guy who had to shower after gym class, or woman with a boring husband or a gay man looking for Mr. Right we all know SIZE Matters!

    Do I a have your attention? Good! Now, let’s get on with it!

    Like many people, I have always experimented with secondary or even tertiary sponsors for my free sites. In my case most of them do not only pertain to a site membership. I have found success with things like, Viagra online; security programs to remove you net affairs; sex toys and videos; and, today’s’ latest a greatest is penis enlargement remedies.

    I’m finding some astonishing success with these herbal penis enlargement products. I’m SELLING it not USING it! LOL. Some of us don’t need it <wink>. But I’m finding lots of my surfers do need it, or at least want it.

    A couple of months ago after seeing an influx of email to Gay Wide Webmasters for hints on selling penis enlargement medications, I decided it would only benefit my member and myself to experiment. I used a sponsor on Gay Wide Webmasters, Albion Medical who boasted great returns and high payouts. Well what I was in store for was BETTER than I expected. By the way, here’s a little secret; I do sign up for my own sponsors but under my real name, so unless they really look hard, they do not know it’s me. I don’t go boasting with out proper backup = )

    Amid my salesmanship attempts for surfers to “Sign Up!” I sprinkled my secondary ads for Penis Growth among the pics with lines like “Become Mr. Right – turn your dick into a DONG” or “Make your manhood massive… Even straight guys will look!” And to my surprise, it worked wonders. I know there is an attitude in the gay male community to seek perfection physical most of all. And it definitely came clearer to me with the number of sales.

    It’s funny how many different ways you can approach selling things that will enhance a person. To me, telling me I need something to make me better pisses me off. Don’t try selling something to me by TELLING ME I’m not right. Or what I have is wrong. I’m definitely a person who marches to the beat of his own drum. And then there are people who NEED to be told they are not everything society expects them to be. That they are doing or have something wrong but it can be fix and you have the solution.

    Like the examples above, “Become Mr. Right…” I took the effect that I was letting the surfer make up his own mind. Does he have an issue? It was entirely up to him to decide. Let me tell you, it works well on gay traffic. Let the gay surfer decide yes or no.

    NOW, I tried a different approach and gauged the success/failure. I popped in text links like “Aren’t you upset by how small your penis is?” “Remember the guys making fun of you in the showers after gym?” or “Are you sick that you don’t fill up you the front of your briefs?” Well let me tell you the number of Emails I rec’d was “enlarged”! For the most part I was getting mail from men who felt I was exploiting them, even making fun of them. I made them feel inadequate and they lost their hard-on. My site was meant to entertain not disdain them. All I could say was WOW! I didn’t expect that kind of response. I will tell you that I was very happy that I didn’t do it across all of my sites and only a few. So I moved everything back to my “Let him decide” campaigns.

    The affect of the sales on the “insulting ads” was evident. According to my traffic program it was apparent that these ads were NOT getting clicks. Instead the surfers clicked on my email link to voice their disgust.

    The bottom line of all this? With the proper motivation, the right marketing approach, surfers enjoy the seclusion of buying penis enlargement aids online. It is a great addition to your web site income among other avenues.

    Article written by Gary-Alan

  • 10 Ways To Promote Your Site

    Date: 2011.02.21 | Category: Promotion | Response: 0

    As we all know, getting productive traffic to your site can be a long and tedious task of course, there are ways to generate ‘optimized’ traffic at very little cost and time involvement. Below are just a few suggestions about how you can increase traffic to your
    site and, inevitably, there are hundreds of different variations of these that will work for your site, I think the key to getting a successful traffic source is dependant on how much effort you put into it and, if you work hard and play little, you will reap the benefits tenfold.

    1. Create an email discussion list. The list should be related to your web site’s subject. Place your ad on all posts and it will remind people to visit your site.

    2. Prove your site is a bargain. Add a lot of free stuff to your offer or, if you’ve sold the product for a higher price before, show them the difference or, show them how much your competitors charge.

    3. Make your web site more useful. Sell ad space, generate hot leads, answer visitor questions, offer free content, be news friendly, etc.

    4. Make the most of each visitor. Sometimes your price is to high. You should provide a variety of similar products at different price ranges.

    5. Test and redesign your banner ads till you get your desired click through rate. Once you do, join many banner exchanges and buy ad space.

    6. Use holidays as a reason to get free publicity. Write a press release or article about the current holiday. It’ll have a high chance of being published.

    7. Utilize the free content on the internet. Publish one article on a single web page and your main web site link then upload it as a doorway page.

    8. Test your new products on the bottom of your home page. You don’t want to take away hits from your best selling products until others are proven.

    9. Make commissions without joining an affiliate program. Just propose a joint venture offer to web sites that don’t have affiliate programs.

    10. Persuade other web sites to link to yours. It can improve your search engine ranking. Just offer them something of value in return.

    Article written by Lee.

  • Converting Japanese Traffic – The Niche Paysites That Work

    Date: 2011.02.21 | Category: Traffic | Response: 0

    Up to this point we have only looked at the European traffic sources and what niches convert for them however, we will now take a look at the Japanese specific adult surfers and, see just what makes them tick when they come to look online for porn.

    Japanese Adult Traffic – Dispelling The Myths.

    Contrary to popular beliefs Japanese porn surfers are not all looking for Bukakke or Hentai orientated adult sites in fact, the results we saw far from backed this up. Also, many webmasters believe Japanese traffic is worthless again, from our results this is simply not the case.

    Japanese Adult Traffic – The Niches.

    We were extremely pleased with the results we found from the Japanese traffic we got to our hub sites in fact, we altered the type of sponsors we used on our Japanese hubs so that we could see just how well this type of international adult traffic converted and, i think you will see the results are worthy of you sending your Japanese adult traffic to sites that do not encompass dialers as the only means of revenue for those surfers after reading this article.

    Asian.

    We set up a small niche specific ‘Asian’ hub trap that we could use to primarily filter our Japanese traffic through and, as we expected, very little of the traffic actually purchased memberships to these sites that were supposedly made specifically for Japanese surfers instead, all but 2 sales came from sites outside of this ‘Asian’ specific hub.

    Ebony.

    By far our best converting niche on Japanese traffic, the sales figures we saw from a join perspective were enough to warrant that we altered the rest of our hub site to ensure maximum exposure of the Ebony niche sites we were using to get them in front of the Japanese surfer as quickly as possible.

    Anime / Hentai / Toon.

    Again another surprise, the sales we saw on these niche paysites were lower overall when compared to sites in completely different niches what was also surprising about this is that the vast majority of adult webmasters will actively push their Japanese traffic to sites in this niche.

    Bukakke.

    Finding a Japanese Bukakke sponsors was impossible for us, instead, we opted to send the traffic to a US only paysite and, as expected, we had no sales for this niche on the Japanese traffic we saw flowing through our sites. As mentioned above with the Anime niche, this is often the first type of site adult webmasters will send their Japanese speaking traffic too and, as we thought, this is wrong.

    Teen.

    The teen niche converted really well for us, not as well as the ebony niche did but non the less, we received a steady amount of signups each month, this steady signup rate was also added to by recurring incomes from the previous months signups towards the end of our three month test period.

    Gay.

    As with the Bukakke niche paysite we received absolutely no sales to the Japanese gay paysite we used in our hub site this was surprising as even with the other international traffic we had gotten at least one sale a month but, alas, it seems the vast majority of Japanese surfers do not want to see naked men online.

    Amateur.

    Specifically amateur web cam sites converted for us on our Japanese traffic and again, this was good because of the rebills at the end of the month in fact, we still have some rebills continuing now some 5 months after our test period ended.

    Japanese Adult Surfers – An Overview.

    As expected at the start of the test period, Japanese adult surfers are not primarily interested in Bukakke and Anime sites in fact, it would appear they were primarily interested in the Ebony paysites we had to offer them. This is interesting in itself because, when offered ‘Asian’ niche paysites we only achieved 2 sales a month compared to the vast amount of sales to the Ebony niche, I think it might be worthwhile re-visiting Japanese traffic at a later date so we can evaluate exactly what preferences they have over time.

    One other thing we discovered when testing the Japanese traffic was that, as we have been saying for a long time, Japanese surfers do hold credit / debit cards and, will use them online if their needs can be matched. This is good as if, like us, you use recurring sponsors on this type of traffic you will see some good long term residual income.

    Article written by Lee

  • Becoming A Webmaster – Communication Home Truths

    Date: 2011.02.21 | Category: General | Response: 0

    Ok, we are ALL guilty of the things that are going to be mentioned in this article in one way or another, this article isn’t going to be a ‘see I told you so’ session rather an explanation of how and why certain things happen from time to time in the adult industry and, how they can be overcome.

    Get ready, his may make you realize the way you have been managing your time this far has been completely and utterly wrong.

    Message Boards.

    A great tool to the webmaster, virtually every resource site owner and their friend has one but, there is one thing that you are not being told as often as you should about them, they ARE counter productive to YOUR work schedule. Think about it, how often do you access a discussion forum on a daily basis? Two, three, four times? maybe more? That time you could be using more effectively, coming up with new ideas, putting sites together, tweaking your traffic sources etc.

    I would whole heartily agree that there IS a need for forums but, at the same time, what would happen if every time we went to post a message we left it and posted a selection of them in some time put aside for doing so? Another thing regarding message boards, they are there to benefit the webmaster, we can let our sponsors know when we have issues, we let other webmasters know when we have issues with them and, we also ask for help and advice, as I say a great tool to the webmaster but also one that should IMHO be used with a little modicum.

    Instant Messaging Clients.

    Again, another great global communications tool for webmasters, we get in touch with our sponsors, our peers and our friends and family but, how many of us spend countless hours a day conversing back and forth about things that, quite frankly, are of little or no importance? Who can honestly say they have time set aside each day to purely log onto your messaging client to just communicate with people? I know I am guilty of keeping my client on 24/7 and answering messages almost instantly whilst also bugging my peers for idle chit chat.

    Email.

    The Bain of every webmaster, speaking from personal experience, if I don’t check my email 50 times a day I check it 100, first thing I do in the morning, check my email, last thing I do before I go to bed? Check my email. I realize there is absolutely no need for me to do this but, non the less I do, its almost as if I have become addicted to checking my mail. I’m sorry to say it but, again, this is one thing that we probably couldn’t live without but, we can certainly cut down the time we check our email each day. If I never had to reply to an email again, I would be happy, as it is I get close to 200 business related emails on a daily basis and, lets be honest, I rarely reply to them the same week.

    Sponsor Statistics.

    Again, another GREAT tool that we are kindly given by our sponsors but, again, even this simple tool can become a Bain to the webmasters workload. How many times do you check your stats on a daily basis? Hell, even I will admit to checking them 3 times a day and, yes, I know even this is to many times. Some sponsors now have stats by email, again, this is better than logging into your stats each day but, it also adds tot he problem with email checking above. Basically, there is only a need to check your stats once a day if that. I used to check them every hour then, for whatever reason, I checked them once a week, then I slowly got back into the phase of checking them morning, noon and, night. The stats are still there every time I look so why do I bother? I guess that’s one of the mysteries of life but, I know I spend far to much time checking them and waiting to see an additional sign up or two on top of what I already have.

    Anyway, I’m going to leave this article alone at this point, as, the above would seem to be the most popular methods of wasting time on a daily basis, we all know we waste our time and we all know that what we need to do is manage it better but, how and when, getting our time management sorted out takes time in itself.

    Article written by Lee

  • 10 Killer Advertising Sentences

    Date: 2011.02.21 | Category: General | Response: 0

    10 Killer Advertising Sentences.

    Tell your readers what they are probably thinking, feeling or doing as they read your ad copy. This strategy will usually trigger their own subconscious mind to bring out these feelings or actions.

    You can add these sentences into any ad copy. You may have to change one or two words so it relates more to the product or service you’re selling.

    1. As you keep reading this ad copy, you are feeling more and more compelled to experience all the benefits of our product.

    2. The more you understand just how valuable our product could be to your life, the less you think about delaying this important purchase.

    3. After you read this short ad you will feel like your problems are almost completely solved, all you will have to do is order.

    4. As you’re skimming through this, you’re beginning to think you have nothing to lose and everything to gain by trying out our product.

    5. As you’re scanning over this ad copy, you are beginning to imagine using our product and enjoying all the benefits it brings.

    6. The more you keep reading our ad the more you feel it would be a waste to let this opportunity slip by.

    7. The more you review our ad the more you begin to find yourself getting very excited about our product and starting to feel the urge to buy now.

    8. You don’t know it yet but, at the conclusion of this ad, you will feel driven to order and experience all the benefits of our product.

    9. You don’t realize it yet but, in a few short minutes you’ll realize that you can’t put off this vital purchase and then you’ll be yanking out your credit card.

    10. As every word you read travels from this ad to your brain, you start to understand just how much our product could benefit your life.

    I hope this article has given you some insight as to how we, as webmasters, can actually ‘manipulate’ the surfer into doing what we want them to and, ultimately, into making us money.

    Article written by Lee.

  • Using TITLE Tags effectively

    Date: 2011.02.24 | Category: Search Engine Optimization, WebDesign | Response: 0

    Microsoft Internet Explorer has supported the TITLE attribute for links since version 4.0. Netscape began supporting it in version 6.0

    The TITLE attribute allows you to enter descriptive text about a link that’s displayed when the mouse moves over the link. For an example, move your mouse over the link below:

    European Webmasters

    The HTML source code for this link is shown below:

    <a href="http://www.europeanwebmasters.com"
      title="Click Here To Learn Foreign Adult Marketing">European Webmasters</a>

    If your browser supports the TITLE attribute you should see a small popup box appear, similar to the way alternate text for images is displayed when you move your mouse over the image.

    This attribute is similar to the ALT attribute for the IMG tag, both in its appearance and its limitations. The value of the attribute must be inside quotation marks, and it can only contain plain text (no HTML tags). You can include carriage returns in the title, and these will be displayed in the text. The maximum length of the TITLE text for Internet Explorer is very large; we’ve tested it with over 500 characters. Try to keep your descriptions below 25 words, though; any more than this can be hard to read and, because the search engine spiders can read this text you may be considered as spamming the engines.

    The TITLE attribute is useful in places where your HTML design limits the length of your link text. That’s often the case for links in a navigation bar, especially if your page has a multi-column layout. Try using the TITLE attribute to give your visitors extra navigation information.

    In addition you can also use the TITLE tag on standard text for extra information where you just don’t have the space to be as affluent as you would like. An example of this is shown below:

    Use of the TITLE tag on plain text

    The HTML code for this is also shown below:

    <font size=”2″ face=”Verdana” color=”#000080″ title=”Use Of The TITLE Tag On Plain Text”>Use of the TITLE tag on plain text</font>

    This attribute is part of the HTML 4.0 standard. Internet Explorer, Netscape 6.x and Opera (Version 3.0 or higher) support it. However, the attribute degrades gracefully, visitors with non-supporting browsers (like Netscape 4.x) would see the link as if you hadn’t used the attribute.

    As you can see from the above examples by using the TITLE tags effectively you can double, if not treble your use of keywords however, caution should be paid when using these features of the tag so that you don’t inadvertently spam the search engines.

    Article Written By Lee

Premium Sponsors















Categories

Site Links