• Building Your Brand – Business Basics

    Date: 2011.02.21 | Category: Branding | Response: 0

    Many online businesses have a good solid brand name attached to them already for example, ARS (http://www.adultrevenueservice.com), Webair (http://www.webair.com) and, WEG (http://www.wegcash.com). These companies have worked long and hard to build up their own brand name on the internet and, specifically, in the adult industry where, it almost seems that everyone is out to make a name for themselves so, how do you as a small business owner get a piece of this branding pie?

    Branding Basics.

    The word ‘Brand’ or ‘Branding’ can refer to several items when used as a noun to describe a company name, product, service or, trademark. Branding started centuries ago when cattle ranch owners used to place their unique insignia on their cattle so that surrounding ranch owners knew who the cattle belonged to and, so that the owners of the brand knew if their cattle were being stolen by others.

    Starting The Branding Process.

    From the very first site you build you should start working on your own inimitable brand name or logo, perhaps it will consist of a small logo on top of every page you build or even a simple text link for your sites domains, either way, the one thing that is important in recognizing a brand is being able to place it to a product instantly.

    Building Your Brand Name.

    Now that you have started the branding process how can you continue to grow your businesses brand name or product even further? This is what we will take a look at next.

    Domain Name Registration.

    Buy the domain name that is representative of your ‘brand name’ if your brand is going to be 123pornosex then go and register 123pornosex.com be cautious though, just because you think of a brand name, you should ensure the domain is available to register BEFORE you start using that brand in detail.

    Getting The Word Out.

    This may seem like the hardest of tasks at first but, once you make a start in branding your site or, yourself this is relatively easy to keep up on an ongoing basis.

    Visit the boards, use your tagline as often as possible and, either mention your brand name in the tagline or, link to your brand names website. This is especially easy to do if you run a TGP or some other site that needs to attract webmaster traffic in order for it to succeed.

    Start your own newsletter, this may seem an odd way to build your brand up but, if you name your newsletter the same as your brand name for example you might have a text link saying:

    Join the BRANDNAME Newsletter.

    This keeps the branding process alive and well. The next step you should take it to ensure that the sender address of the email is something like brandname@brandname.com again, even though you have collected the email addresses by sending out mailings from an address like the one above you have more of a chance of your brand name actually staying in the mind of the newsletter recipient.

    In addition to a newsletter, you might also like to consider having a designer make you a logo or button you can use on your site/s this will come in handy for several uses for example, if you own a traffic site you can use this logo as a reciprocal link, you can use it in your signature on message forums and, you can even include it on sites you build.

    You might also like to consider writing articles for other sites to use, usually the sites that publish your articles will place a link or a small bio to you or your site, this is another way to increase the ‘exposure’ of your brand.

    Branding Overview.

    All in all, building a brand name for yourself or your business need not be a hard and tedious task in fact, if you start off almost immediately building up name recognition for you and your sites. Regardless of what type of product, service or site you operate getting your brand name recognized by both webmasters and surfers can lead to a lot of money long term, start now and reap the benefits later in your career.

    Article written by Lee.

  • Geo Targeting – What Exactly Is It?

    Date: 2011.02.22 | Category: General, Promotion | Response: 0

    As the adult industry reaches further and further across the online global community we are beginning to realize the importance of our foreign surfers, gone are the days of shifting them off to a dialer site instead, we find more and more companies actually using geo-targeting techniques to filter and monetize this profitable traffic more but, how does geotargeting work and, more importantly, is it any good? They are the questions we will look at in this article.

    GEO::IP – The Basics.

    The Geo::ip module is a relatively simplistic database of IP addresses and, the matching country to which the IP address belongs. This means that the GEO::IP module can be used for a variety of purposes including automatically selecting the language and countries of your visitors, for credit card fraud detection, and for software export controls.

    Geo Targeting – The Basics.

    As described above, the GEO::IP module is what drives any and all forms of geographical location targeting system (geo targeting). Geo targeting is the method most commonly used in the adult industry to either send a surfer to a localized version of a paysite or, send them off to a dialer in an attempt to monetize them it works by checking either the surfers browser language, country ip address or, both of these.

    Putting Geo Targeting To Work.

    Despite what most webmasters may think about the complexities of geo targeting and the GEO::IP Module for Perl they are easy to use and implement and, furthermore, there are cost free and highly effective ways of using geo targeting on your sites to monetize your international traffic. Lets look at two easy free solutions for webmasters to geo target their traffic.

    JavaScript.

    Using JavaScript you could add the following code between your HTML <head> and </head> tags to redirect international traffic to a specific url on your server:

    <SCRIPT LANGUAGE=”JavaScript1.2″>
    <!– Begin
    if (navigator.appName == ‘Netscape’)
    var language = navigator.language;
    else
    var language = navigator.browserLanguage;

    if (language.indexOf(‘en’) > -1) document.location.href = ‘english.shtml';
    else if (language.indexOf(‘nl’) > -1) document.location.href = ‘dutch.shtml';
    else if (language.indexOf(‘fr’) > -1) document.location.href = ‘french.shtml';
    else if (language.indexOf(‘de’) > -1) document.location.href = ‘german.shtml';
    else if (language.indexOf(‘ja’) > -1) document.location.href = ‘japanese.shtml';
    else if (language.indexOf(‘it’) > -1) document.location.href = ‘italian.shtml';
    else if (language.indexOf(‘pt’) > -1) document.location.href = ‘portuguese.shtml';
    else if (language.indexOf(‘es’) > -1) document.location.href = ‘Spanish.shtml';
    else if (language.indexOf(‘sv’) > -1) document.location.href = ‘swedish.shtml';
    else if (language.indexOf(‘zh’) > -1) document.location.href = ‘chinese.shtml';
    else
    document.location.href = ‘english.shtml';
    // End –>
    </script>

    Php.

    Using .php you can add the following to your sites pages to redirect traffic based on their browser language.

    <?
    $user_lan = $HTTP_ACCEPT_LANGUAGE;

    if($user_lan==’de’) {
    ## German
    $redir_url = “http://www.germanlanguagepageurl.com”;

    } elseif($user_lan==’fr’) {
    ## French
    $redir_url = “http://www.frenchlanguagepageurl.com”;

    } elseif($user_lan==’it’) {
    ## Italian
    $redir_url = “http://www.italianlanguagepageurl.com”;

    } elseif($user_lan==’es’) {
    ## Spain
    $redir_url = “http://www.spanishlanguagepageurl.com”;

    ## US traffic or Rest of world not defined above
    } else {
    $redir_url = “http://www.yourmainpageurl.com”;

    }

    header(“Location: $redir_url”);
    exit;

    ?>

    As you can see from the above two examples, monetizing your international foreign traffic is a relatively easy step and, with the right sponsors to send this traffic to you will be able to reap the profits of countries that other webmasters are not targeting yet.

    Geo Targeting – Overview.

    When all is said and done geo targeting can be a cost effective way to increase your bottom line profits, whether using a free method as described above or, using one of the many filtering services available on the net you should start to monetize your global surfers. One thing you should also consider however is that far from sending your international traffic to a dialer you should search around and find a good mix of adult affiliate programs with a variety of localized paysites, this in itself will enable you to see just how much traffic you have been wasting by using dialers in the past and, it will also allow you to realize the full potential of your new found geo targeted adult traffic.

    Article written by Lee

  • Domain Name Extensions + SEO

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

    With a slew of new TLD (Top Level Domain) extensions being launched in the first quarter of 2004 in addition to the hundreds already available how many of us actually take time to consider that when we register a .com, .net or, .org domain how will these sites help or hinder us with our search engine work? This is what we will take a closer look at in this article.

    Domain Name Extensions – What Are They?

    First of all, before we look at how the extensions of our domain names can assist us in running our search engine optimization methods we need to understand what the TLD’s themselves are actually for. Domain name extensions are essentially a way to recognize specific locales via the usage of domain names so for example, the domain name extension .com were primarily set up as commercial domain names however, with the commercial use of this extension it has also become, without a doubt the most popular extension for individuals or companies registering new domain names. In addition to the TLD extensions there are also a selection of domains extensions ranging from industry specific extensions such as .aero to country specific extensions such as .co.uk.

    Domain Name Extensions And Search Engines.

    Now we understand what the domain name extensions were put in place for we can now start to look at how they may benefit us in terms of SEO (search engine optimization) for example, head across to http://www.google.com and do a search on something such as ‘penis pills’ you can see from the results shown (01/01/04) that the first 10 results are evenly spread across a range of domain name extensions ranging from .com to .net and also some smaller .go.ro domain extensions. This would lead us to assume that at the current time, Google specifically is not paying to much attention to the extensions of the domain names we are using however, given the recent updates of the last month or two across Google this has also cleaned up a lot of the results that were present 2 months prior to this search in which the .biz extension was highly populated in the rankings.

    Domain Name Extension Abuse + Spam.

    With this slew of new domain name extensions being launched what seems like yearly this also opens up a whole lot of new problems for the webmaster primarily that of the domain name spam. Because domain names can be registered for as little as $5 per year many webmasters have taken to purchasing them, using them to spam the search engines and then, once the search engines discover the spam and remove the offending domains, the webmaster then moves on to new domains in effect, making domain names a disposable commodity to them. Whilst this method will certainly garner traffic for the search engine spammer it will also in turn mean that the traffic that honest webmasters receive from the search engines will be lower.

    Domain Name Extensions And Optimization.

    Hopefully this brief article has given you a little insight into how domain name extensions can both benefit and also detriment your business, by choosing your domain name extensions carefully and, making sure you do your best not to spam the search engines you can make some serious income from pure search engine traffic however, once you start to buy domain names with lesser known extensions to purely spam the search engines you are not only wasting your own money but, are also potentially wasting other hard working webmasters money too.

    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

  • Marketing Sites With Slogans

    Date: 2011.02.22 | Category: Promotion | Response: 0

    With the constant changes happening in the adult industry webmaster need to look towards alternative ways of marketing not only their own sites but the sites of their sponsors. This is where something that we have all seen daily can come in handy, what is this marketing tool? Simple, Slogans.

    Slogans – What Are They?

    A slogan is a short, memorable advertising phrase for example, ‘Just Do it’ – Nike. By utilizing a slogan on your site you are not only giving your surfers something other by which they can remember your site by but, you are actively building up your brand which, in turn, can mean more repeat traffic and ultimately, more sales.

    How To Make A Slogan.

    So now you know what a slogan is how do you go about creating one? Simple, you should think of something short, usually three to four word slogans work the best again, as with the Nike example above ‘Just Do it’ its short, sweet and memorable, try to make your own slogan fit within this guideline and you are half way done. Another thing that you may like to consider is making your slogan practical or humorous, something witty can often stay in a persons mind a lot longer than something serious, play on peoples memory and ensure they remember your brand.

    Where To Use Your Slogan.

    Now that you have thought up a slogan which you feel will work on your traffic and sites you need to consider the places where you can use it for maximum impact, the most obvious place to use your slogan is on your site design, either at the top or the bottom of your pages, make it clear and more importantly, make it stand out. In addition, if you have any banners or buttons created, ensure you utilize the slogan on those creatives, the goal is to have your slogan seen by as many people, as quickly as possible.

    Article written by Lee

  • The Adult Internet – More Than Just Porn

    Date: 2011.02.24 | Category: General | Response: 0

    So you have several adult websites up and running and, if you are one of the lucky few in this day and age you have already started to make money from your adult sponsor programs however, there are so many other ways that webmasters can make money in the adult industry in addition to their regular ‘porn site’ sponsors yet, many webmasters do not realize there are vast opportunities awaiting them.

    Lets spend a few moments to look at the alternative sources of income that we can use in the adult industry and also take a look at the basics of each type of affiliate system.

    Email Collection.

    Opt in email is big business, there is no denying this fact so why not jump on the opt in email collecting bandwagon? Most email collection sponsors will offer you anywhere from $0.50 per email collected to $2.00 per email collected and, better still, to start making money from your existing traffic base all you need to do is include a small email collection box.

    Software Programs.

    Many of the larger adult affiliate programs now offer their webmasters a range of software products to generate additional income, many of these products are good for use not only in adult but, also in mainstream. For instance, Anonymous browsing software, history deletion software, IE Toolbars and even submission programs are all good ways to generate additional income either on a per download or, per sale basis. Best of all, you only need to add a new banner to the sites you currently have in order to get a share of this lucrative market.

    Herbal Products.

    Penis Pills, Breast Enlargement, Vitamin Supplements, you name it you can sell it on adult traffic. Whether you run a TGP, Link List or your own collection of free sites, these herbal products can often sell much better than ‘porn sites’ and, for the most part, the payout levels are the same, if not higher than what your regular ‘porn site’ trial will make you. Again to get started with this type of sales all you need to do is add a text link or banner to your existing sites.

    Casino Sites.

    Gambling makes BIG money, just look at Vegas for the example, millions of people a year visit Nevada to gamble and millions more simply can’t get there for a range of reasons however, almost every home in the United States has a computer and internet connection so why not start using this to your advantage? Many of the larger casino affiliate programs will pay based on the amount of funds credited to a new users account and, to get started making money from casino sites it is quite literally as easy as adding a banner or text link to your existing sites again.

    Pre Paid Services.

    Such as Credit Cards and the likes, selling these types of products to your adult surfers not only offers then ‘anonymity’ on the web when they do make online purchases but at the same time when your surfers sign up or one of these pre-paid credit cards you will be making some money in the process. Often however you will find that these types of affiliate program do not payout as much ‘long term’ as they are pretty much a first time deal as far as, once the surfer spends money to initially ‘charge’ their pre paid card with funds, that is when you will make money and not again. Still, even if you can make $50 by selling one of these cards, its still an additional $50 you wouldn’t have made otherwise.

    Adding To Your Profits.

    As you can see from the above, there are a wide range of products and services you can offer your surfers and, as we all know, the more things we can offer our ‘customers’ the more chance we have at one of them buying something. Of course, as with anything, the more effort we put into marketing these products and services the more chance e have at making a sale however, unless we try to sell the surfer something other than porn, how will we know whether they will buy or not?

    Article written by Lee

  • Robots.txt – Control The Robots That Crawl Your Sites

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

    By writing a structured text file you can indicate to robots that certain parts of your server are off-limits to some or all robots. It is best explained with an example:

    # robots.txt file for general use on web servers.

    User-agent: webcrawler
    Disallow:

    User-agent: googlebot
    Disallow: /

    User-agent: *
    Disallow: /cgi-bin
    Disallow: /logs
    The first line, starting with ‘#’, specifies a comment.

    The first paragraph specifies that the robot called ‘webcrawler’ has nothing disallowed: it may go anywhere.

    The second paragraph indicates that the robot called ‘googlebot’ has all relative URLs starting with ‘/’ disallowed. Because all relative URL’s on a server start with ‘/’, this means the entire site is closed off.

    The third paragraph indicates that all other robots should not visit URLs starting with /cgi-bin or /log. Note the ‘*’ is a special token, meaning “any other User-agent”; you cannot use wildcard patterns or regular expressions in either User-agent or Disallow lines.

    Two common errors:

    Wildcards are not supported: instead of ‘Disallow: /tmp/*’ just say ‘Disallow: /tmp’.
    You shouldn’t put more than one path on a Disallow line (this may change in a future version of the spec)
    Ultimately, without the use of robots.txt files on your servers/domains, you are risking a variety of potential problems including, unauthorized access to your cgi directory, unauthorized viewing of your site stats, possible spamming of the search engines by accidental crawling of doorway pages.

    One distinct advantage however of having a robots.txt file on your server is that, quite simply, you will be able to tell when and where your site has been indexed or potentially indexed as, all robots will automatically call for the robots.txt file BEFORE any other page on your server so, as long as you keep an eye open for any calls of this file, you can see who is knocking at your site for indexing purposes.

    Below is a robots.txt example that you can copy and paste into a text document to use on your own server:

    <!–Start Copy Below This Line–>

    User-agent: *
    Disallow: /cgi-bin
    Disallow: /logs

    <!–End Copy Above This Line–>

    The above will allow all spiders to crawl all of your site except the subdirectory’s ‘cgi-bin’ and ‘logs’ which, may be altered to suit any subdirectory’s you do not wish the spiders to crawl on your server.

    Article written by Lee

  • Promoting Safe Sex In The Adult Industry

    Date: 2011.02.24 | Category: General | Response: 0

    To most webmasters, the only thing that needs to be considered when building and marketing our websites is the layout of the site, the sponsors that they will be using and ultimately, the amount of money they will make from the site however, there is another side of the adult industry that we should also be considering, the moral side.

    Safe Sex – Morally Speaking.

    We all have our own morals and work ethics however, I think that sometimes most of us push these to the back lines a little when it comes to making a buck which is understandable however, we are in a position of power somewhat over a lot of things that many of us do not even think about, we know that for the vast amount of industry webmasters there are more than 90% of them will actively report child porn sites when they find them however, how much further does this reach and, how much harm could you potentially be doing long term?

    Promoting Safe Sex – The Issues At Hand.

    Step out of your webmaster persona for a short while now while you read this next paragraph and actually think about what is being said, all of us in our communities realize that sexually transmitted diseases and especially HIV/Aids is on the increase although maybe not reported as much the one thing that you can be certain about whether you go to a gym, a bar or a doctors is that we are constantly shown images promoting safe sex, ask yourself how you feel about that and, furthermore, ask yourself if you would have unprotected sex with someone if the answer to this question is yes then the rest of this article will be of no consequence to you however, if the answer is no, then you may like to read on.

    Safe Sex Online.

    Now we have ascertained how you feel about safe sex, why do you not promote this more often on your sites and galleries? We are giving surfers a product that will, in all likelihood fulfill their fantasy and, quite possibly, be mimicked by them at some point in the future. With this in mind I would suggest the following to you if I may. When purchasing content, try to purchase photosets where the models are practicing safe sex, if a surfer see’s a famous porn star using a condom then, ultimately, they themselves may use a condom when they next have sex. When building a site or gallery why not promote a condom affiliate program on the site, either through the use of a text link or a button or banner, not only are you being responsible but, you are also still going to make money should your surfer buy something from your condom sponsor. A good sponsor for Condoms is http://www.condomexpress.com.

    Promoting Safe Sex – The Bigger Picture.

    As mentioned in the opening paragraph of this article, more often than not, webmasters choose to go with bottom line profits over their morals however, thankfully this isn’t always the case. Whether you decide to start promoting safe sex as a method to promote condom sales or, whether you choose to promote safe sex as it is a moral that you believe in, one thing alone will stand true, by showing the surfer that sex can be safe and fun, we are definitely doing our part towards making sure that not every webmaster is seen as morel-less.

    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.

  • Marketing Anime Sites

    Date: 2011.02.22 | Category: Promotion | Response: 0

    Anime and the various styles associated with it, such as Hentai, Manga, Comics and Toons is one of the hottest niches on the net.  It is presently experiencing a huge growth, with many of the larger companies launching sites dedicated to the genre.

    When someone unfamiliar with Adult Anime and Hentai hears the word Anime, they tend to think in terms of Sailor Moon, Dragon Ball Z, Pokemon or Speed Racer (if they are of my generation.) Make no mistake; what we are discussing today is NOT for children.  Adult Anime and Hentai are as different from the example above as Disney Movies are from HomeGrown Video.

    Targeting and marketing to the anime surfer is not that much different from any other niche, with a few notable exceptions.  Taking the time to learn a little about the subject matter will make a difference in your profit margin. Even though you are still selling “sex”, or more accurately “hentai” (more on that later), with anime the “sell” is more in the fantasy aspects than reality. Anime characters can perform any way and do anything that the surfer wants, even the impossible. So you must use more creative text links and graphics to create the right feel for the surfer and lure him in, and not treat the art as if it were just mere cartoons.

    True anime fans do not consider anime to be cartoons. You will get fans that like it for its sexual aspects and yet others who have a love of the art form itself.  If you make light of the art or fail to create the fantasy for them, you may lose surfers. Anime is truly an art form; each picture is unique in its beauty and in its style.  Each artist will render a vision of his or her own, and the variety is as wide and varied as one’s imagination.  This is the appeal of anime, that and the fact that in Anime a surfer can have a character created to fulfill his fantasy, no matter how outrageous.

    Bear in mind while designing, targeting and eventually linking your anime site, that this particular genre covers all age groups and appeals almost equally to woman as to men. It is also a niche that will attract surfers from many countries. It is extremely popular with your North American surfers, but a great deal of the anime surfers come from Australia, Europe and Japan, for some reason these country’s surfers love their anime!  So make sure to expand the scope of the Search Engines you normally submit to, if you are not already submitting to Japanese, Australian, and other foreign SE’s. A great place to find a list of these SE’s is http://www.beaucoup.com/1geoasia.html.  Don’t forget to look at alternative link lists as well, though many of the “big” list have anime and toon sections, you will definitely want to get listed on lists that are targeted to the niche, some examples would be:

    http://www.toonplaces.com
    http://www.hentaikitty.com
    http://www.hentaiseeker.com

    To help you understand a bit more about the Anime niche I have listed some descriptions of common anime terms:

    Anime: In the US and many other western nations, it is limited to meaning Japanese animation (AKA Japanimation, although a lot of people don’t like that term). Characteristic features would be large eyes, funky hair colors, and often, er, accentuated physiology. In Japan, anime means animation in general, Warner Brothers, Disney as well as Macross and El Hazard.

    The modern-day anime style is an adaptation of Disney style (introduced to the Japanese after WWII, by the American occupation), most notably the large eyes. However, unlike animation in America, animation or “anime” in Japan is not just for kids and the subject matter can range from deep, action packed science fiction stories to slapstick humor to even soap-opera-ish romance. In short, the only real difference between anime and other television shows and movies is that they are animated. While it’s true that in recent years there have been several American animated shows that have been aimed at a broader audience than your Saturday morning cartoon crowd, such as Titan AE, and the soon to be released Final Fantasy, the Japanese have actually been doing this for quite some time.

    Japanese law formerly banned the depiction of genitals or pubic hair in art; as a result, most of the true Japanese images you’ll see distributed in Hentai Anime circles have either been censored by the Japanese government prior to distribution or auto censored by the artists themselves in compliance with the law. Underground artists have been known to produce full, all out, no holds barred uncensored works and of course not all Hentai Anime comes from Japan. Artists who were not Japanese citizens were not bound by Japanese law so uncensored Hentai Anime usually came from those countries.. The law has since been repealed. (See the book Dreamland Japan by Frederick Schott for more information on this law.)

    Although the law has changed, people’s attitudes are slow to change with it and many Japanese artists continue the practice of censoring or avoiding depictions of the genitals or pubic hair. However, now that it has become legal, such depictions are sure to become more common. Sometimes, net artists will take it upon themselves to uncensor mosaic images, however, it isn’t easy to find someone who does this arduous job well, so even these are uncommon.

    Hentai: The classical meaning is “metamorphosis, transformation.” It later came to mean “abnormality,” and in modern colloquial Japanese is used almost exclusively to mean “pervert” or “perversion.” When a woman insults a man in anime, she generally uses on of three terms: hentai, sukebe, and ecchi. Sukebe implies “oversexed” rather than “deviant.” Ecchi can be quite mild in some contexts, comparable to “lewd” or “Fresh!” These three terms are often used interchangeably, especially when someone is stringing together insults.  In adult anime, hentai normally would lend itself to what we consider hardcore images, such as the very popular bondage anime images.  In the Adult market Anime has come to signify more softcore images and Hentai hardcore.

    Manga:  This is what comics are called in Japan. The artist Hokusai coined the word manga in 1815, usually translated to mean “irresponsible pictures.”  Traditionally drawn in black and white, sometimes with blue inks mixed in, Manga can be action comics, love stories or even hardcore fantasy.

    Doujinshi: Amateur/underground Manga that often parody existing Anime or Manga.  Usually done in small print runs and often Hentai in nature. They are frequently “proving grounds” for aspiring “professional” Manga artists.

    Yaoi: Male homosexual relationships, or Anime or Manga stories about relationships between “beautiful boys” (bishounen). Comes from “YA-ma-nashi O-chi-nashi I-mi-nashi” (No climax, no punchline, no meaning)

    Shoujo: Shoujo anime is anime originally aimed at young girls. “Shoujo” literally means “little girl”. Shoujo anime includes such series as Sailor Moon and Magic Knights       Rayearth.  Also referred to as Bishoujo, “Beautiful Girl”

    Shounen: Shounen anime is anime originally aimed at young boys. “Shounen” literally means “Little Boy”. Shounen anime includes such series as Pokemon, Speed Racer and DragonBall Z.  Also referred to as Bishonen, “Beautiful Boy”.

    It is important that you educate yourself on the difference in definitions for the various styles of art.  Using the wrong phrases could attract children to your site and responsible use of terms is extremely important.

    As with any Website, knowing your subject matter and the surfers that view it is essential.  This niche is growing more popular everyday.  Many sponsors are realizing it’s potential and adding it to their sites as well as building sites specifically for this traffic.  There are TGP’s and link lists dedicated solely to these sites, and legal content is available. The Anime/Cartoon surfer is an extremely loyal breed; once they discover quality sources they keep coming back.  I hope this   sheds some light on this highly unique niche and that the information will help webmasters market their sites to higher profits.

    Article written by Bestat

Premium Sponsors















Categories

Site Links