• Marketing to European Surfers

    Date: 2011.02.22 | Category: Promotion | Response: 0

    Marketing to European Surfers.

    Today we’ll try to answer couple of questions regarding dialers and how to market them to European traffic.

    How to get traffic to your European market targeted site?

    Pretty much the same way as for all the other sites, lets German market for example (Germany, Austria, Switzerland) use SE’s, German link-lists, TGPs,… feed site with your own traffic, and don’t forget to use exit-consoles.

    Is your site translated into specific language?

    Yes, of course you won’t get far using English template on German/Spanish.. sites… You can always contact Adult Site Translation if you need help with translations.

    What sponsor should you use?

    That is pretty hard to say. Practically since almost every European based sponsor offers dialers so it doesn’t really matter which one you choose. It’s the same with per sign-up sponsors: It depends how good you are in sending traffic to them. And as always try couple of them and see which one works best for you. Most of the sponsors will offer to your surfers to pay by CC, bank account and dialers.

    Me personally, I don’t really advertise dialers. I go for sign-ups because most if not all European sponsors are recurring and it brings more money in the long run. But if a surfer wants to pay the (admittedly) high phone bills – that’s fine with me In fact, sometimes I get more money from a 0190-number (dialer number in Germany starts with 0190) than I’d get if the surfer would sign-up with his CC and would cancel his membership after the first payment.

    Why are dialers so successful in the German/European market?
    Well, I can think of 3 reasons for this:

    1.) 0190-numbers are very common in Germany. Many support-hotlines use them, you can download logos for your cell phone via 0190, you can get health-tips via 0190, fax-numbers, etc… Germans see those numbers everywhere and get used to them. Of course they know that they are expensive but I think they tend to forget this because they are so common.

    2.) Much of my income from dialers is from Swiss and Austrian people. Especially surfers from Switzerland LOVE dialers (Some of them spend hours/nights with dialers and in the end if i get 50% of that for me is not bad, isn’t it? :) I think they love dialers because they hesitate to give out the information on their CC (if they have any) and they can’t/don’t like to transfer their money via bank transfers. So dialers are actually their only way to get into the members-area.

    3.) Credit cards are not very common in Germany. I would guess only some 30% have one and many who have one don’t believe that CC transactions on the internet are secure. So most of the surfers have only 2 options left: Paying by bank account or using a dialer. The bank account has 2 disadvantages in the eyes of the surfers: 1st “The sponsor knows my name, my account number, where I live and that I’m a greasy little wanker who pays for porn. -Maybe this sponsor is going to tell my neighbors about it-” 2nd “How can I explain this to my wife?” On the other hand the dialer has advantages: 1st It is anonymous. Nobody knows who and where the surfer is. 2nd The dialer is faster than typing all the necessary information needed for a bank transaction. A few seconds for a 35kb download and the surfer is ready to go. 3rd You can always find a reason why there’s this 0190-number on the phone-bill. “Well darling, you know, I had problems with my new graphic card and I had to contact the customer-support. Those damn bastards are on a 0190-number what what can I do?”

    Well, that’s about it on dialers. One warning at the end: If you like to give them a try beware of those that do auto-downloads and auto-installations. Surfers don’t like them. Use dialers where the surfers needs to click somewhere to download and install them.

    Article written by Lee

  • Cascading Style Sheet Basics

    Date: 2011.02.21 | Category: WebDesign | Response: 0

    CSS (Cascading Style Sheets) have been around for a while now, and act as a complement to plain old HTML files.

    Style sheets allow a developer to separate HTML code from formatting rules and styles. It seems like many HTML beginners’ under-estimate the power and flexibility of the style sheet. In this article, I’m going to describe what cascading style sheets are, their benefits, and two ways to implement them.

    Cascading What’s?

    They’re what chalk is to cheese, what ice-cream is to Jell-O they complement HTML and allow us to define the style (look and feel) for our entire site in just one file!

    They get their name from the fact that each different style declaration can be “cascaded” under the one above it, forming a parent-child relationship between the styles.

    They were quickly standardized, and both Internet Explorer and Netscape built their latest browser releases to match the CSS standard (or, to match it as closely as they could).

    So, you’re still wondering what a style sheet is? A style sheet is a free-flowing document that can either be referenced by, or included into a HTML document (Kind of like using SSI to call a file but not, if that makes sense). Style sheets use blocks of formatted code to define styles for existing HTML elements, or new styles, called ‘classes’.

    Style sheets can be used to change the height of some text, to change the background color of a page, to set the default border color of a table the list goes on and on. Put simply though, style sheets are used to set the formatting, color scheme and style of an HTML page.

    Style sheets should really be used instead of the standard , < b >, < i > and < u > tags because:

    One style sheet can be referenced from many pages, meaning that each file is kept to a minimum size and only requires only extra line to load the external style sheet file

    If you ever need to change any part of your sites look/feel, it can be done quickly and only needs to be done in one place: the style sheet and furthermore, it is done globally.

    With cascading style sheets, there are many page attributes that simply cannot be set without them: individual tags can have different background colors, borders, indents, shadows, etc.

    Style sheets can either be inline (included as part of a HTML document), or, referenced externally (Contained in a separate file and referenced from the HTML document). Inline style sheets are contained wholly within a HTML document and will only change the look and layout of that HTML file.

    Open your favorite text editor and enter the following code. Save the file as styles.html and open it in your browser:

    Cascading Style Sheet Example.

    h1
    {
    color: #636594;
    font-family: Verdana;
    size: 18pt;
    }

    This is one big H1 tag!

    When you fire up your browser, you should see the text “This is one big H1 tag!” in a large, blue Verdana font face.

    Let’s step through the style code step by step. Firstly, we have a pretty standard HTML header. The page starts with the tag followed by the tag. Next, we use a standard tag to set the title of the page we are working with.

    Notice, though, that before the tag is closed, we have our tag, its contents, and then the closing tag.

    h1
    {
    color: #636594;
    font-family: Verdana;
    size: 18pt;
    }

    When you add the style sheet code inline (as part of the HTML document), it must be bound by and tags respectively. Our example is working with the tag. We are changing three attributes of the ’s style: the text color (color), the font that any tags on the page will be displayed in (font-family), and lastly, the size of the font (size).

    The code between the { and } are known as the attributes. Our sample code has three. Try changing the hexadecimal value of the color attribute to #A00808 and then save and refresh the page. You should see the same text, just colored red instead of blue.

    An Example Of An External Style Sheet.

    External style sheets are similar to internal style sheets, however, they are stripped of the and tags, and need to be referenced from another HTML file to be used.

    Create a new file called “whatever.css” and enter the following code into it:

    h1
    {
    color: #a00808;
    font-family: Verdana;
    size: 18pt
    }

    Next, create a HTML file and name it test.html. Enter the following code into test.html:

    External Style Sheet Reference Example.

    This is one big H1 tag!

    As mentioned above, you can see that the actual code in whatever.css is exactly the same as it was in the inline example. In our HTML file, we simply place a tag in the section of our page. The rel=”stylesheet” attribute tells the browser that the link to the external file is a style sheet. The type=”text/css” attribute tells the browser that whatever.css is a text file containing CSS (cascading style sheet) declarations. Lastly, the href=”whatever.css” attribute tells the browser that the actual file we want to load is whatever.css.

    Conclusion.

    Well, there you have it, a quick look at style sheets and how to implement both an inline and external version. Checkout the links below if you’ve never worked with cascading style sheets before. You will be surprised at some of the things you can do with them!

    Article written by Lee.

  • Think Fresh – Work Smarter

    Date: 2011.02.24 | Category: General | Response: 0

    We have all experienced it at some point in our webmaster career, more often than not though, we hear about it all the time. What is it? Wanting to give in when we hit that proverbial brick wall.

    Hopefully this article can offer you some help and advice when it comes to getting your sales back on track or, even getting them started at all.

    Ask For Help.

    The one thing that amazes me about this industry is that despite the fact we are all business competitors we are all (mostly) willing to help other webmasters out for little or nothing in return. if you hit that brick wall then imply ask for some help.

    As webmasters we have a barrage of free tools readily available to us for asking the advice of others whether it is in email from your sponsors support reps, icq or even on the many industry related chat boards, by actually spending sometime to help yourself by asking others you can often see things from a new perspective and, get advice as to why thing that should be working are not.

    Start Over.

    So you have been doing this webmaster job for the last few months submitting to the TGP’s, building free and AVS sites but you still haven’t made a dime, something is wrong somewhere but how do you pinpoint the error? By far the easiest way to find out what is wrong is to start afresh. Head over to one of the webmaster resource sites and see what others are doing ask for advice and feedback on your sites and learn from the experiences they tell you about. Just because you might have heard the same information before doesn’t mean you shouldn’t ask about it, often one webmaster will be able to tell you an alternate way of doing something that another webmaster is. One of the best ways to get a grasp on this learning curve is to read articles and tutorials, there are thousands of them on the net from HTML to Programming and everything in-between emulate the information contained in these articles and adjust that same information to suit your needs.

    Don’t Stagnate.

    If you are not having success at the AVS side of the business try something else, you already have a good base for building free sites and even TGP’s just because you have never tried using these sources of traffic and income doesn’t mean you wont be any good at them.

    If traffic is your problem as mentioned above, ask others where they get their traffic from and how they built it up, learn to start small and grow instead of running head first into millions of hits a month that are being wasted.

    Research The Industry.

    If you are thinking of quitting, before you do spend a day or two just doing a little background research in the industry, its no secret that webmasters who join the online industry today have to work two or three times harder than our peers who joined several years ago, this is and always has been true in any business. By researching the industry you should be able to find out how others that joined before you failed and, more importantly, WHY they failed, learn from those experiences.

    Finally.

    No matter how hard and meaningless you find the work stick at it, just because you are not making any sales it doesn’t mean you wont make any sales tomorrow or even next week / month / year. Keep turning those sites out and, soon enough, when you least expect it you’ll make a sale and, you know what… the euphoric feeling you will get will be more than enough to make you realize that you HAVE been doing something right all along.

    Article written by Lee

  • Adult Employment Vacancies

    Date: 2011.02.21 | Category: Employment | Response: 0

    For some the prospect of being able to work for another company online is something that they may ultimately want to pursue however, just how do you go about finding work for one of the many adult companies and, more importantly, how can you ensure that you have a better chance of being hired for the job once you find the position you would like to have at the company?

    Online Adult Employment – Job Types.

    Working in the adult industry can take many forms however, the most commonly perceived adult industry job is that of a model but, what about other online job vacancies such as graphics designer, marketing manager, sales director, and webmaster support representative, just how do you find out what companies are hiring and more importantly, what adult employment vacancies they have.

    Adult Employment Agencies.

    For many webmasters the chances of finding employment in the adult industry at a ‘regular’ online employment agency such as monster.com may seem impossible however, that said, many of the larger companies have realized the value of the mainstream employment agencies and, as such are now advertising on these sites for their staff but where else can you look? Well there are actually several adult industry employment sites that adult webmasters can look at to find their ideal job for example Adult Staffing, Sexy Jobs and, Adult Help Wanted in addition to several smaller sites operated by companies such as Cybererotica.

    Improving Your Employment Chances.

    So now you know where to look for adult employment opportunities what can you do to ensure you have a greater chance of being hired? Well as with the mainstream bricks and mortar job market having a good curriculum vitae (CV) can be a good start, ensure you keep your CV regularly updated and that it contains pertinent information for the type of job vacancy you are looking for in addition, often the first method of contact you will make with these potential employers will be via email or cover letter, make sure that you spend some time to write a letter that is not only noticeable but, interesting and, more importantly, grammatically correct. Demonstrate in this first stage of contact with your potential future adult employer that you take pride in your work and, you might just get bumped to the top of the ‘must see’ applicants.

    Adult Jobs – Overview.

    Many webmasters forget that there is more to the online adult industry than being able to party with the best of us and, whilst this does form a chunk of the industry overall it is not conducive of you further enhancing your online career, take the time to investigate all of the avenues available to you and, most importantly, make sure you choose a job that you not only want to do but one that you will enjoy, your reputation is the one thing that a potential adult employer will take into consideration, if you have had several previous jobs all lasting for short periods of time, it wont look as good to them as if you have only had a couple of jobs for a lengthier time frame. Most of all remember that whenever you contact a company looking for employers, make sure you are prepared and professional even if it is just sending them a quick email asking for further information.

    Article written by Lee.

  • Domain Name Renewals – The Basics

    Date: 2011.02.22 | Category: Domain Names | Response: 0

    As an adult webmaster there is one thing that we all own which we build our businesses on, a domain name and, with this comes the responsibility to ensure that as long as we are running our business from any given domain that we ensure they are constantly under our control this is where domain name renewsl come into play.

    Domain Name Registration Periods.

    Almost all reputable domain name registrars will allow you to purchase a domain for anywhere between one and ten year periods. Many webmasters however only choose to register their domains for one year at a time and this, is where many webmaster can run into problems with their domains. More often than not webmasters will either forget to renew their domain names completely or, are not aware that they are even coming up for renewal. For this reason it is usually best to ensure that you register your domains for a minimum period of two years, this gives you a good time frame to start using the domain as well as ensuring you have enough funds available by the time the domain name comes due for renewal.

    How To Stay On Top Of Your Renewals.

    The simplest way to ensure that you keep on top of the domain names you own and when they are due for renewal is to keep a written document detailing as much information as possible about your domains, this document should include information such as the domain name itself, the registrar you used to register your domain name, the cost of the domain name and, most importantly, where the domain is pointing to, the period of registration and, the date when the domain needs to be renewed. By having this information readily available and, by keeping this document up to date with each new domain name purchase you should be able to ensure that no matter when your domain/s become due for renewal that you are on the ball with paying the domain name renewal fees.

    Domain Name Renewals Overview.

    Regardless of when you register a domain name the one way you can be sure to be the owner of the domain for years to come is to ensure that you keep accurate, detailed records of each domain name purchase, whether you keep this written on a calendar, on a piece of paper or, somewhere else, you should make part of your monthly routine checking this document and making sure that the domains you own are all fully working and, more importantly, are fully paid up.

    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

  • Using SSI For Auto Updates

    Date: 2011.02.24 | Category: WebDesign | Response: 0

    We all realize the benefits of being able to save time when building sites so, I got into thinking, how can I make my sites look as if they are continually updated without the need to go in and update them manually? Enter the world of SSI.

    SSI is actually a nifty little tool, not only can you include files from a central location but, you can include them at specific times of the day, days of the week or even months of the year, very handy indeed if you are building any type of site that needs updating periodically.

    Once the main burst of work has been completed you can pretty much use the same files over and over again to help you out.

    So onto the auto updating SSI, the following SSI coding will enable you to update a page or pages based on which day of the month it is. It will check the day the page has been accessed and display the relevant information again, this is a handy thing to have should your sponsor be running a promotion over several days, all you need to do is update a selection of SSI files and all of your sites are updated instantly.

    <!–#config timefmt=”%d”–>
    <!–#include virtual=”/yourdirectory/$DATE_LOCAL.txt”–>

    What you need to do is create 31 text files named 01.txt right the way through to 31.txt take the SSI call above and edit the location of the SSI files on your server, you may like to have a central folder named /SSI/ for this purpose so the location would be changed to /domain.com/SSI/$DATE_LOCAL.txt

    I the 31 files you created you could have a table ad with eight of your sponsors links, an article in each one or even just a simple text link, anything that you may want to update can be included in these files.

    As I mentioned above you can base the time, date and even month of rotation to whatever you like to alter how the files are rotated and ultimately viewed on the web you should change the %d in the timefmt field to one of the following:

    %d : Day of the month requires 31 files named 01.txt to 31.txt
    %w : Day of the week requires 7 files named 0.txt to 6.txt
    %j : Day of the year requires 365 files named 001.txt to 365.txt
    %u : The week of the year requires 52 files named 00.txt to 53.txt
    %m : The month of the year requires 12 files named 01.txt to 12.txt
    %H : Hour of the day requires 24 files named 00.txt to 23.txt
    %M : Minute of the hour requires 60 files named 00.txt to 59.txt

    As you can see from the above there really are no limitations to the uses of updating using SSI and, apart fro the relative ease of use and the time saved using them should one sponsor not be converting for you all you need to do to swap sponsors is alter your central set of SSI files and you have instantly changed sponsors over all of your sites.

    Article written by Lee

  • The Ins and Outs of European Domain Name Registration

    Date: 2011.02.22 | Category: Domain Names | Response: 0

    A domain name is more than just your online adult business address; it’s a crucial aspect of your online adult business. It is closely linked to the way a surfer thinks of and, more importantly, remembers your site. In many European countries, domain names that end with a country code carry more weight with the Internet-surfing public than dot.com domain names. So, if you want to have of a chance of selling to a foreign adult surfer in a European country you might consider registering a European country code top-level domain name (ccTLD) for your site.

    Obtaining a ccTLD could potentially:

    • Increase your chance of getting listed on a national search engine. Many national search engines require a company to be local, however that may be defined, to be listed with them.
    • Get you a higher ranking with a local search engine.
    • Make your business more accessible to customers and vendors in a specific country.
    • Make your business seem more local and thus help overcome any fear local customers might have of buying from a non-European outfit.

    What Is a ccTLD, Anyway?

    Generic top-level domains (TLDs) are not linked to any geographic area. They include the well-known and familiar .com, .org, and .net domain names. In contrast to these generic TLDs, there are ccTLDs: Each country and territory in the world has its own TLD. They include, for example, .at for Austria, .be for Belgium, and so on.

    Essentially the domain name policies regulate who can register what type of a domain. In principle, nearly anyone can register a generic TLD.

    It is important to keep in mind that you might lose a domain name you recently registered in Europe if another company can prove in court that the name is rightfully theirs. If the court decides that the plaintiff has a right to it, you will lose that domain name however, I am assuming that nobody reading this is going to be considering registering ccTLD’s for the purpose of cyber squatting.

    Each country or region has its own rules, policies, and regulations about who can register a ccTLD, and how. Common restrictions include the requirement to be a local registered company or to have registered the company and/or company name as a national trademark in a specific country. However, some countries are less strict about who can register. As always, it depends on the country and its particular rules.

    The table below is meant to give you easy access to the information you will need when you are ready to register a European domain name for your site.

    Here is an explanation of the categories used in the domain registration table:

    • Country: Name of the country you might want to obtain a domain name for your business in.
    • Name of domain: The ccTLD (a two-letter abbreviation).
    • Must be local: This can mean that your business presence, your company’s physical presence, or your trademarks must be local.
    • More domains possible: Some countries limit the number of domains that you can register.
    • Same name as owner: Some countries require that the registered name be the same name as the owner’s company name or trademark.
    • Signed contract: Some domain name registration agencies demand a written, signed declaration or contract to be sent in. If in doubt, read up on specific rules relative to the specific domain name registrars you will be using.
    Country Name of Domain Must be local More domains possible Same name as owner Signed contract
    Austria .at No Yes No No
    Belgium .be Yes Yes No Yes
    Denmark .dk No Yes No No
    Finland .fi Yes No Yes No
    France .fr Yes Yes No No
    Germany .de Yes Yes Yes No
    Greece .gr Yes No No No
    Iceland .is Yes No Yes Yes
    Ireland .ie No Yes No No
    Italy .it No Yes No Yes
    Luxembourg .lu No Yes No No
    Netherlands .nl Yes Yes No Yes
    Norway .no Yes No Yes Yes
    Portugal .pt Yes Yes No No
    Spain .es Yes No No No
    Sweden .se Yes No Yes Yes
    United Kingdom .uk No Yes No No

    Now you can see the possibilities available in respect of registering more than just dot.com addresses perhaps you might like to find a country you would want to gain some extra traffic from and see about registering a ccTLD and developing it.

    Also, you could improve your chances of gaining additional traffic to your new ccTLD domain by having some country specific language on that domain, again, how your site comes across to the surfer is just as important than the domain and, there are plenty of Adult Site Translation companies out there who can assist you with this part of the ccTLD development.

    There are, of course, other ways to gain additional foreign surfers other than just registering a ccTLD for example, on European Webmasters we have a domain name registration section that will allow you to translate specific text in order to gain type in foreign traffic on dot.com TLDs perhaps, if you don’t want to or, cant register a ccTLD in the country of your choice you might like to take this approach at gaining additional foreign traffic to your sites.

    I hope this article has given you a little insight into the varieties of domain names available in and around Europe and that you might just register a domain and see for yourself how profitable the European markets are.

    Article written by Lee

  • Utilizing All The Content You Use On TGP Galleries!

    Date: 2011.02.24 | Category: TGP | Response: 0

    Utilizing All The Content You Use On TGP Galleries!

    For the last few months i have been experimenting with a few new (but old, if ya see what i mean) ideas.

    Basically i have adapted Voltars 3x3x3 project slightly and incorporated it into the TGP/TGP2 game.

    The results have given me some of the best sales ratios ever! We’re talking under 1:60 almost consistently across all sponsors!!

    What you did is thus….

    Design a NICE 15 pic tgp gallery in a table preferably four rows high and 5 columns across.

    In the first row place one thumb in each cell (5 pics).
    In the second row place one odd sized banner in the first cell and merge cells 2,3 , 4 and, 5.
    In the cells you have merged place some descriptive text about the pics you are using in under two paragraphs and include a line of text where you MENTION the sponsors site name.
    In row 3 place one thumb in each cell (5 pics).
    in row 4 place on thumb in each cell (5 pics).
    under the table place a juicy text link.
    below this juicy text link leave a line or two and add a money bar (one row by three columns using a contrasting color to the background of your gallery page).
    ALL pics go on html pages using the same layout as your main TGP page but, without the table included.
    Repeat this process 4 times once for four different niches, saving each niche in their own sub folder for the main site i.e:

    url/sub folder/niche 1
    url/sub folder/niche 2
    url/sub folder/niche 3
    url/sub folder/niche 4

    You should now have 4 TGP galleries using 15 pics on each in four niches (60 pics in total).

    At the top of each of these main pages place a three cell one row table.

    in this table use text links to describe each niche i.e:

    Teen
    Gay
    Lesbian
    Mature

    in the template for the teen niche you use text for the gay, lesbian and, mature templates and link these to the appropriate TGP template.

    This is where the fun begins…..

    Take all four TGP niche galleries you have just made and do the following….

    Delete the first row of cells (including pics) on all TGP galleries and save the new page layout in another folder using the same navigation structure as the original ie:

    url/sub folder 2/niche1
    url/sub folder 2/niche2
    etc
    etc

    You should now have the following:

    four TGP templates consisting of 15 pics each.
    four TGP templates consisting of 10 pics each.

    Again, link these new 10 pic templates to each other in the same way as you did the 15 pic templates.

    Repeat this procedure to make the 10 pic TGP page using the original TGP page BUT, this time, delete the bottom row of cells.

    You now have the following:

    4 niche 15 pic TGP pages
    4 niche 10 pic TGP pages
    ANOTHER 4 niche 10 pic TGP pages

    Still with me?

    Its gets better….

    Take your original 15 pic TGP template and do the following…

    Delete the first and the third row of cells including all the pics and save them in ANOTHER folder using the same structure as before i.e:

    url/sub folder 3/niche 1
    url/ sub folder 3/niche 2
    etc
    etc

    Again link these in the same way as before using the text links at the top of the pages.

    What do you have now?

    4 TGP pages using 15 pics
    8 TGP pages using 10 pics
    4 TGP2 pages using 5 pics

    Can you guess what’s next?

    Take that original template again and…

    Remove the first and fourth row of cells do the same when you save it as you have done above…

    What do you have?

    4 TGP pages using 15 pics
    8 TGP pages using 10 pics
    8 TGP2 pages using 5 pics

    Do it once more using the original templates but removing the final set of 2 rows of cells you now have…

    4 TGP pages using 15 pics
    8 TGP pages using 10 pics
    16 TGP2 pages using 5 pics

    In the root of the domain where you are going to upload these pages do the following…

    Create a simplistic warning page… link this to a multi site FPA… this multi site FPA links to each of the niche (15 pic) TGP templates you have made.

    On this same fpa place an email erotica collection box, banner exchange code and a toplist counter code along with an exit console going to a MC POTD program.

    Now, what you need to do is start submitting these pages to the TGP/TGP2’s submit one a day or as many as you can until you have submitted them all.

    Ok still here?

    Next you have to duplicate ALL of the above again.

    Place the duplicate of the above into a separate set of folders/sub domains etc.

    On the new root you have created, link to another multi site FPA AND the first root index.html page.

    You now have the makings of an EXCLUSIVE 3x3x3 TGP hub which, you can leave alone and submit all of the pages intermittently to any TGP/TGP2 you wish for LIFE!!

    All the time you are adding new sections to it and building your link pop in the search engines because you are continually interlinking to each of the separate niche and relevant sub niche folders.

    Of course, you NEED to get the meta’s sorted on the first main template for this to work but, if you change all subsequent meta descriptions etc you’ll have a very reasonable listing in Google for the relevant search terms :)

    Article written by Lee

  • Anime vs. Cartoon – What Is The Difference?

    Date: 2011.02.21 | Category: Content | Response: 0

    Over the past three years I have written articles, been a guest on radio shows, and even been part of panels, all discussing the wonders and bewilderment of anime and hentai content. In that time, I thought I had covered most aspects of the niche, the content, the market, the huge underground following, the money making potential etc. Yet I am still being asked on a regular basis questions about the niche and especially about the confusion of what is anime vs. other toon type content. So I decided to re-visit the issue in this article.

    One of the newer occurrences that seems to have confused many a webmaster, is the recent surge of content providers now offering images that they have titled as anime. Many of these images are computer generated images (CGI) in 3D like format, which tend to portray almost life like images. While others are cartoon images in various styles, that while they do have their market, are certainly not anime.

    Anime and Bishoujo (also known as Hentai) images are very unique in their style and characterization. If you know certain key points about the art work, you will know if what you are looking at or purchasing can truly be termed anime. And believe me, your surfers or members definitely know the difference! Here are some of the key things that you can do to assure yourself of what you are getting:

    Eyes: The eyes are one of the most important features of anime style characters; they are the most expressive parts of the face, and are part of what makes each character different and recognizable. Large eyes are of course the one feature that most people associate with anime, but just making the eyes large is not enough. Anime characters’ eyes should always have at least some sort of shading. Anime females in particular tend to have really heavy shading and lots of shiny areas. Male characters have light glares in their eyes, too, though they often are not as large or obvious.

    Nose and Mouth: Anime style noses and mouths are pretty straightforward, they consists of three basic simple shapes: a wedge for the nose, a long, thin line for the mouth, and a shorter line to define the lower lip. You will rarely see teeth on an anime character, even when the character is seen with the mouth wide open.

    Hair: Hair styles of Anime characters are stylized, unique, and sometimes impossible to have in the real world. Any hair color is possible, be it blond, black, sky blue, light green, orange, pink, all the colors of the rainbow. Hair length is also unusual as most males have shoulder length hair and most females either have really short hair or their hair is at least four feet long.

    Now this is obviously a generalization as there will be some variance in images depending on the style of a particular artist. But in general, this is what the anime/hentai surfer will look for. The other key to authentic anime is the style itself, the art is hand drawn and until recently always hand inked or colored as well. Though some artists now draw the sketches by hand and color via the computer, it is still very easy to notice the difference in quality of hand drawn art.
    I am not saying that other artworks do not have their market, they certainly do! I just want to make sure, if you are promoting images as Anime that you are truly using anime images, otherwise your sales or sign ups will not be near what they could be.

    Now let’s visit toons shall we? Cartoons, toons, sexy toons, erotic art, erotic illustrations, what ever you want to call them, are also very popular with many surfers. Toons are just what they seem to be, illustrated drawing depicting various characters in an exaggerated form. These images are fantastic for use on or for promoting the mired of Toon sites out in the market today. Toons, like Anime can fulfill fantasies that cannot be realized in real life or with real people. If you can think of it, it can be drawn! There is high demand for quality sexy toons because the loyal surfers out there cannot get enough.

    There are things to watch out for however even in toon content. Copyrighted characters, this has been a popular debate among those of us that deal and make our living from anime and toons. A copyright is a copyright is a copyright! Whether it be created or shot, the characters belong to the creators. Even if the character has been modified to blur the identity, if it is a recognizable character, ie, Batman, Flintstones, Sailor Moon, DragonBallZ etc. then you can be opening yourself up to prosecution from the copyright holder. Many a webmaster can tell you about hearing from Nintendo, Disney, Marvel and many other companies on this issue. Some providers feel that since such images are a parody of the copyrighted characters, they are protected, and in some cases they might be. But unless you have very deep pockets or a rich uncle to help you win that court battle, I would strongly suggest you steer clear of this type of image.

    As with any content you purchase it is important that you do your research and know your provider! Just because some one is selling something, it does not automatically make it legal, nor does it indemnify you, if it is not illegal. Unfortunately, as in all business there are a few bad apples out there that are willing to risk their reputations and their business to make a few quick bucks. If a provider tells you that the anime/toon images they offer come from Japan, and it is ok to use them, because the Japanese artists do not care, run, do not walk from this provider because that is simply a lie. Japanese artists are very aware of the theft of their artwork and many are now utilizing the Bourne Convention (http://www.law.cornell.edu/treaties/berne/overview.html) to actively prosecute offenders throughout the world.

    I hope this has helped clear up some of the confusion about anime vs. cartoons, and as always I am more than happy to answer any questions you may have on the subject. You can always find me through my sites.

    Article written by Bestat

    http://www.exclusivecontent.com

Premium Sponsors















Categories

Site Links