Archive for the ‘WebDesign’ Category

  • Newbie Basics – The HTML Layout

    Date: 2011.02.23 | Category: WebDesign | Response: 0

    In this article we will look at some HTML tags that you will be using in every HTML document that you create. They are the base for every web page and are the essential pieces of HTML coding to ensure that your pages display correctly.

    The Structure Tags.

    Here is a look at the main structure tags. You will have to get used to these since you will be using them for all your pages.

    We would suggest that you start by copy and pasting the structure into your document then creating my page once they’re in place.

    Make it a habit to ensure that all surfers (regardless of their browsers) will be able to identify your creations. Each of these HTML tags are used in pairs with a start and ending tag in the same way as we mentioned in the previous chapter.

    <HTML> </HTML>

    The HTML tag tells the browser that your page is a valid HTML page.

    The first and last tag on all your HTML documents will be this tag.

    The complete HTML coding for the remainder of your document will be placed between these two HTML tags.

    <HEAD> </HEAD>

    This tag is used to reference your document.

    <TITLE> </TITLE>

    This tag enables you to give your HTML document a title.

    It’s best to insert descriptive text about your page between these tags we will go into this in more detail in the later chapters.

    This will also be the name that is displayed in a web browser’s system tray when someone bookmarks or adds your HTML document to their favorites list.

    <BODY> </BODY>

    The entire coding for your page goes in between these two tags.

    Basically, they mark the beginning and end of your web page’s body. They are the essence of your HTML.

    All your HTML tags in your document will be resting in between these two HTML tags.

    Putting It All Together.

    Now that the main tags have been outlined, it’s time to put them all together. Here is an example of what your HTML documents should look like.

    <HTML>
    <HEAD>
    <TITLE>The Title Of Your Html Document Goes Here</TITLE>
    </HEAD>

    <BODY>

    All your other HTML tags and text goes here.
    This Is the main body of your HTML document.
    At the end of this text you will also see where the closing Body and HTML tags go.

    </BODY>

    </HTML>

    This is the basic structure for any HTML document. Once these tags are in place, the rest is down to you. These Tags are not case sensitive. In other words, you don’t have to use all capital letters like we have in our Chapters. It won’t make a difference to the overall outcome of your tags. However we would recommend using Caps for your tags. It makes them a lot easier to distinguish from all the other sections of your HTML document coding, as you can see in the example above.

    Article written by Lee

  • Content – Keeping your members coming back for more

    Date: 2011.02.22 | Category: Content | Response: 0

    We know that the first battle for pay site owners is getting the traffic and the signups. But, sometimes this becomes such a focus that we forget the other battle: keeping members interested once you have them. When people pay for a membership to a site they are expecting to get their money’s worth. In return for their monthly fee they are looking for a site that encompasses quality, variety and originality.

    As the web grows, so does the online entertainment industry. Four or five years ago there was only a handful of pay sites around compared to the thousands and thousands that are on the net today. Back then, you could literally put any kind of content on your sites and you would have membership, there just was not much choice out there for the connoisseur of porn. Now, potential members are more informed, they know what is out there, they know what they like, and they know what they want to see.

    What has to be done to cater to these more discriminating porn shoppers? You have to give them what they want. Here are some useful tips for choosing a content provider and/or content for your pay sites that will keep the members coming back for more:

    Go for the exclusive content.

    You want to be able to provide your members with something that is fairly fresh and that is not pasted on every pay site on the Internet. The last thing a potential buyer wants to see is a site that is a carbon copy of half the sites out there.

    Choose leased content.

    Choosing leased content over buying CD’s is a good way to keep your site fresh. Most leased content providers will update their content on a bi-monthly or monthly basis. As well, with leased content, it is just a matter of adding the feed into your site. This alleviates the need for extensive extra graphic design work.

    Have a wide variety of content.

    Make sure that your site has a little bit of everything a potential member could want: pictures, videos, live feeds, etc. The more you have the better. Many content providers have great package deals available that will include all of these things all set up and ready to put on a site.

    Choose a reputable content provider.

    You want to make sure that when you choose a content provider that you do not just go for the best deal out there. You want to also look at things like: how much bandwidth they provide, what their technical support is like and last but not least, do they have good customer service.

    These are just but a few helpful suggestions to follow when choosing content for your pay site. There are certainly many ways to achieve a high rate of member retention. One thing that many of our customers tell us is that they find that having a least one voyeur feed on their site great for keeping the members coming back for more. Laura’s Condo, one of our voyeur feeds, has one of the best member retention rates around. Visitors get attached to the girls, develop a rapport with them and they do not want to lose that. Hence, they will keep renewing to be able to keep their relationship going with their favorite girl.

    The number one thing that pay site owners must remember is that members equal money and in order to keep the cash flow rolling in they must keep the members interested and give them what they want. By spending a little extra money to get high quality exclusive content, you will actually be putting more money in recurring memberships back in your pocket at the end of the day.

    Article written by Meredith Murray

  • JavaScript Know How

    Date: 2011.02.22 | Category: Scripts | Response: 0

    JavaScript can be one of the most useful additions to any web page. It comes packaged as standard in Microsoft’s Internet Explorer and, Netscape Navigator and allows webmasters to perform field validations, mouse-over’s, pop ups and a whole entourage of other nifty little features on our sites.

    In this article we will show you how to:

    – Display the browser name and version number
    – Change the text in the status bar of the browser
    – Use an input box to get text from the user
    – Use a message box to display text to the user
    – Change the title of the browser window

    Before that, however, we need to know how to setup our web page so that it can run the JavaScript. JavaScript code is inserted between opening and closing script tags: <script> and </script>, like this:

    <script language=”JavaScript”>

    –> JavaScript code goes here <–

    </script>

    These script tags can be placed anywhere on the page, however, it’s common practice to place them between the <head>and </head> tags. A basic HTML page that contains some JavaScript looks like this:

    <html>
    <head>
    <title> My Test Page </title>
    <script language=”JavaScript”>

    function testfunc()
    {
    var x = 1;
    }

    </script>
    </head>
    <body>
    <h1>Hello</h1>
    </body>
    </html>

    For the examples in this article, you should use the basic document format I have just shown you, inserting the JavaScript code between the <script> and </script>tags. When you load the page in your browser, the JavaScript code will be executed automatically.

    Displaying the browsers name and version number.

    The “navigator” object in JavaScript contains the details of the user’s browser, including its name and version number. They can be displayed in a browser using the document.write function:

    document.write(“Your browser is: ” + navigator.appName);
    document.write(“<br>Its version is: ” + navigator.appVersion);

    I run Windows 2000 and Internet Explorer version 6, so the output from the code above looks like this in my browser window:

    Your browser is: Microsoft Internet Explorer
    Its version is: 4.0 (compatible; MSIE 6.0b; Windows NT 5.0)

    Changing the text in the status bar of the browser.

    To change the text in the status bar of a browser window, just change the “status” member of the “window” object, which represents the entire browser window:

    window.status = “This is some text”;

    Using an input box to get text from the user.

    Just like in traditional windows applications, you can use an input box to get some text input from the user. The “prompt” function is all you need:

    var name = prompt(“What is your name?”);
    document.write(“Hello ” + name);

    The prompt function accepts just one argument (the title of the input box), and returns the value entered into the text box. In the example above, you get the users name and store it in the “name” variable. You then use the “document.write” function to output their name into the browser window.

    Using a message box to display text to the user.

    You can display a message box containing an OK button. These are great when you want to let the user know what is happening during their time on a particular page. You can use a message box to display the “name” variable from our previous example:

    var name = prompt(“What is your name?”);
    alert(“Your name is: ” + name);

    The “alert” function takes one argument, which is the text to display inside of the message box.

    Changing the title of the browser window.

    To change the title of a web browser’s window, simply modify the “document.title” variable, like this:

    document.title = “My new title”;

    One bad thing about the “document.title” variable is that it can only be manipulated in Microsoft Internet Explorer. Netscape’s implementation of JavaScript doesn’t allow for modification.

    In Closing.

    As you can see from the examples in this article, JavaScript is a powerful scripting language that can be used to enhance a visitor’s experience with our site. However, you shouldn’t use JavaScript too much because in some cases it can annoy visitors and send them packing before your site even loads!

    Article Written By Lee

  • HTML Page Load Times – Making Them Quicker

    Date: 2011.02.22 | Category: WebDesign | Response: 0

    Surfers on the web are here for one thing and one thing only, they want information, they want it to be correct and, more importantly, they want it now. We cant always help when it comes to getting the information however we can help them so far as making sure that when one of the surfers clicks on our pages they load quickly.

    Taking Control Of Speed.

    For many webmasters hand coding their HTML pages is an often timely and costly method and, because of this they turned to the WYSIWYG (What You See Is What You get) editors such as Dreamweaver and Frontpage to create their pages for them however, even this in itself requires some manually intermission on the webmaster part. Many of the older style WYSIWYG Editors added a fair amount of un-needed code to the HTML so, spending a few minutes after you have your pages created to physically go through the HTML code and clean up the junk html can in effect, cut down your page size by up to 25% in some instances.

    HTML Quotations And Hyphens.

    In addition to un-needed HTML tags you may also want to consider removing any quotation marks or hyphens from your HTML code, both of these can quickly clutter up a page and laden it down with more code than is actually required.

    For example, ‘HTML Coding’ makes just as much sense as me telling you HTML Coding when read in sequence. The trick with using quotations and hyphens is actually knowing at what point in your text you can ‘get away’ with removing them and, this is only something you will know yourself after proofing your completed page.

    Hyperlinks.

    If you are only going to provide links from one page of your site to another then, why use absolute paths? http://www.domain.com/linking.html is the same as /linking.html when you use it in a link from one page on your site to another and, well, in all honesty you have increased the load time of your page by only linking to the relative url instead of the absolute and that’s what we are trying to do here right? Make our pages load faster.

    White Space.

    White space on a web page can be a good marketing tool however, white space in your HTML code is a bad thing, placing spaces between certain parts of your HTML code can quickly bog down your load times instead, try to use the tab key to separate certain parts of code likewise, keep the use of &nbsp to a minimum, this can quickly become the most relevant term on your page if used in excess.

    One other benefit of making your pages as small as possible is that a webmaster wanting to steal your HTML code is going to have a harder time finding the exact piece of coding if the HTML is all on a single line than they would if the code was laid out nicely however, this in itself is only a deterrent and it wont stop those webmasters determined to steal your HTML code.

    Page Load Time Overview.

    Hopefully this brief article has given you some idea of ways in which you can practically reduce the load time of your pages without affecting the overall look and feel of your site and, who knows, if your page loads quicker, then you have a better chance of your surfer getting to your sponsor quicker.

    Article written by Lee

  • How To Choose A Legal Content Provider

    Date: 2011.02.22 | Category: Content | Response: 0

    How To Choose A Legal Content Provider.

    If you spend anytime in this business no matter in what capacity, you are going to hear about how important using legal content is. Legal content is content that you have specific permission or license to use on your sites. Permission can come from your sponsor who offers you free content to promote their site, as long as certain criteria is followed. It can come from the producer of the images if he/she is a friend of yours, though I would still advise you obtain a license from them anyway. And the third way of course is to purchase content from one of the myriad of content providers out there. It is the third way I am going to discuss in this article.

    Being the intelligent Webmaster you are, you have decided to purchase some legal, fresh content for your sites. Makes no difference what type of site(s) you run, free sites, TGP’s, pay sites etc. fresh, unique content is always a plus. So you begin your search for the content you are in need of. You are going to find that in most all cases you are going to find a LOT of content providers that offer what you are after. You can go to any resource board and get a list of providers that covers page after page, some more detailed in information than others. Some names you will have heard of before and some you will have never heard of, so how do you choose? Here are some of the basic questions you should ask yourself:

    Do they carry the type of content I need. Seems simple enough, but if you are looking for Asian lesbian images, no sense wasting your time on a provider that specializes in Gay content. The provider’s site should be laid out that you can easily assess what they offer with the first 2 pages of their site.

    What am I using the content for? This becomes very important when selecting what image packages you buy. If you are going to use the content for free sites or TGP’s where the main goal is to get them off your site and on to your sponsor, then quality is not going to be as important as price. If you plan to utilize them in a pay situation, such as AVS or members site, quality should be your first consideration.

    What price am I willing to pay? By knowing what you are using the images for, you have a fair idea of what they are worth to you. Do not be fooled into thinking that buying a MEGA disc for .10 an image is a killer deal. It could be, but if the image CD only contains 100 images that you can utilize and the rest are trash, what is the point? Much better to pay a higher price per image to get exactly the kind and quality you want. Shop around of course; per image prices can vary greatly per provider.

    How do I know these guys are legit? Excellent question! J More than ever these days you cannot swing a cat and not hit 100 content providers. Every college guy and his brother with a digital camera and a girlfriend think they can make a quick buck in the Adult market. I could very easily list over a dozen so called content providers right now, that have come on with incredible deals only to be gone in less than 3 months. Then the Webmaster finds out the license he has for the images are not worth the paper they printed them on. This is one of the easiest areas for a Webmaster to get ripped off in. So what to do? Research my friends, research!

    a. Ask the provider for copies of the 2257’s they are required by law to have on premises. Any reputable provider will supply these to you; many include them with the license even if you don’t ask for them. Any provider that bulks at doing so upon request should be taken off your shopping list.

    b. Read over the license agreement very carefully, before you buy. Not every license is the same, some allow you a certain percent of images for promotional use, such as creating banners etc. some prohibit it. How many sites and domains you can use the images on vary, as does the price they charge to add or transfer a domain or license. Remember the license is a legal document and should be treated as such.

    c. Ask around! Reputation is so very important in this business and the good providers know it. Don’t be shy about asking the provider directly for references, emailing fellow Webmaster’s and even posting for comments on the boards. Make sure you get a good cross span of answers from all sources, so you can quickly weed out anyone that is deliberately trying to make a provider look bad. This could be their competition or a Webmaster that tried to use the content illegally and got busted. So make sure you ask people your respect and trust. Find out not only about how they’re prices stack up, but also about their customer service after the deal is done. And NEVER assume just because a provider is listed on your favorite resource board that they are legit. Though most resources will try and screen people they list, there is no guarantee. There is no substitute for researching it for yourself.

    Following these simple guidelines will save you a lot of grief in the long run. It may take a day or two for you to get the feedback you need, but it could save you from taking down hundreds of galleries later on. Or worse, paying for a product you never receive. And trust me, that happens.

    Article written by Bestat.

    http://www.exclusivecontent.com.

  • Formatting HTML Text Using Tags

    Date: 2011.02.22 | Category: WebDesign | Response: 0

    Formatting HTML Text Using Tags.

    As we know there are many elements to a website from graphics to text. In this article we are going to have a closer look at text and, more importantly how we format the text to look like we want it to.

    The text of the HTML pages we create, as you already know goes inside the <body> tag of our HTML pages but, unless you are using a WYSIWYG editor you can not just click a button and make it appear bold or italic therefore we need to get to know some of the text property tags that can be used to enhance our HTML text. Lets take a look at some of these now.

    <b> Any text inside these two tags will appear bold on our page</b>
    <i> Any text inside these two tags will appear in italic on our page</i>
    <u> Any text inside these two tags will appear to be underlined on our page</u>
    <big> Any text inside these two tags will appear BIG on our page</big>
    <small> Any text inside these two tags will appear small on our page</small>
    <sub> Any text inside these two tags will appear subscript on our page</sub>
    <sup> Any text inside these two tags will appear as superscript on our page</sup>

    There are also things called ‘heading tags’ these will work the same as the formatting tags mentioned above however there are only six of them and they look like this <hx> with the x being replaced by a number from 1-6 the lower this number is in the tag the LARGER our text will become so for example:

    <h1> Will be the largest heading text</h1>
    <h2> Will be the next smallest heading tag</h2>
    <h3> Will be smaller again </h3>
    <h4> Will be one size smaller again</h4>
    <h5> Will be the second to smallest heading size</h5>
    <h6> Is the smallest of the heading tags</h6>

    Also, you should remember that it *IS* possible to use more than one of the text tags in any single line of portion of text on our web page so for example, if i wanted to have bold underlined italic text my tags for the text would look like this:

    <b><i><u>This text is bold, in italics, and underlined</u></i></b>

    You will notice from the above example that the tags were opened and closed in the same order they were created this doesn’t have to be done like this but, in the long run, it is easier for you as a webmaster to code your pages this way.

    Hopefully this article has given you a further understanding on how we can format out text and you will be bale to put this into practice on the next site you build.

    Article written by Lee

  • Fonts – Everything You Wanted To Know

    Date: 2011.02.22 | Category: WebDesign | Response: 0

    All web browsers use standard fonts. Mostly two types, one for proportional, one for mono spaced fonts. Proportional (or variable width) characters adapt in width, an “m” uses more space than an “i”. Mono spaced (or fixed width) characters are all equal in width, typewriter style.

    Most browsers use “Times” for proportional fonts. This font was originally developed by the London Times news paper. “Courier” is used for mono spaced. This was a very popular font used for mechanical typewriters. Both are normally set to 12 points (1/72nd of an inch).

    Serif And Sans Serif.

    Both these fonts are so called serif fonts. The French word serif indicates the little strokes at the outer ends of the characters. They are very old, you see them in old gothic handwriting, or Greek and Roman buildings. Partly used for ornamental reasons, partly because the characters are easier distinguished.
    It’s a little odd they are used on computer screens. These are by nature quite coarse, which makes serif characters quite grainy and ugly. Sans serif characters generally display a lot better on screens. Sans serif literally translates to “without stroke”. Probably the most popular sans serif font is Helvetica or derivatives like Windows’ Arial.

    <FONT FACE=”Arial”>…</FONT>

    The FONT Tag.

    The html tag for fonts is a somewhat crude instrument. Most word processors let you use any font you like, as long as it’s on your system. And that’s the first big problem in web browsers. You have no control over other systems’ fonts. So you will have to choose a font which is likely to be on any system out there.

    <FONT FACE=”Arial,Helvetica,Sansserif”>…</FONT>

    Typeface.

    The font tag accommodates this by letting you specify several fonts in the FACE attribute. If the first one is not available, the second is used, and so on. The set above is often used. Arial is on all Windows systems, Helvetica on Macintosh, Sans serif on UNIX. The same is true for mono spaced fonts in the line below.

    <FONT FACE=”Courier New,Courier,Mono”>…</FONT>

    Size.

    Word processors let you specify font sizes in points exactly. No such luck in web browsers. There are seven sizes to choose from, denoted 1 (smallest) through 7 (largest). If this SIZE attribute is not used it defaults to 3. I think the default 12 point size is a bit big, so I use 2 for size, which gives you about a 10 point character. Some browsers let you set the overall font size smaller or larger. Which makes this issue even more awkward.

    <FONT SIZE=”2″>…</FONT>

    There is a nasty bug in some browsers. When using a block of text with size 1, the last line skips a line. This bug can be squashed by putting a <BR> tag immediately after the block of text. If your browser has this bug it will show in the second text below.

    There is a nasty bug in some browsers. When using a block of text with size 1, the last line skips a line. This bug can be squashed by putting a <BR> tag immediately after the block of text (with break).

    Color.

    Fonts can have any color you like, much like the colors in the body tag. Keep readability always in mind, avoid clashing colors and little contrast. You can create nice shading effects. But don’t make a Christmas tree out of your page by using too many colors.

    <FONT COLOR=”red”>…</FONT>

    Style Sheets.

    There is a chance all this soon will be replaced by style sheets. They do let you specify exact point sizes, even use downloadable fonts. But for now I would advise against that, since not all current browsers understand them. You could however use a combination of both, should you want to.

    Article written by Lee

  • Favicon.ico – What Does It Do?

    Date: 2011.02.22 | Category: WebDesign | Response: 0

    Favicon.ico is the name of the graphic Internet Explorer 5+ uses in the address bar and when someone views their favorite bookmarks. There should be one beside the address of this page now if you are using IE5+. If you want to see favicon.ico in action among your favorites bookmark our site now by right clicking and selecting ‘Add to favorites’.

    Internet Explorer looks for this file in the same directory as the HTML page currently being displayed, if it cant find favicon.ico it will then display the default Internet Explorer icon in the address bar. As for viewing of favorites, IE will check its temporary folder to see if favicon.ico is there again, if it is not located it will display the default white background with a blue ‘e’ icon.

    For a webmaster there are three main advantages to using the favicon.ico ‘trick’.

    The first, is that it helps to brand your site with a nice little icon that is easy to recognize.

    The second, is that it makes your website more professional.

    The third, is that your entry will stand out in surfers bookmarks over the others. This is especially good as, if you can get a surfer back to your site then you have another chance at making a sale.

    Many internet users have a multitude of site bookmarks so, you need to use favicon.ico to give you an edge. I highly recommend using it and, now I’m going to tell you how.

    First, you will need to create an icon file which is exactly 16 x 16 pixels. If the icon is larger or smaller IE5+ will just ignore it. As for the colors in it, 16 is standard. You can use more colors if you want but, the more colors you use, the larger the .ico file becomes and, the longer it takes to load.

    You now know the standards the favicon.ico file has to be, now to actually create this file you can take one of two routes.

    The first is to convert and existing 16 x 16 BMP or GIF graphic with 16-32 colors into an .ico file using converter software making sure to save it as favicon.ico.

    You know the standards the favicon.ico file has to be, now to actually create favicon.ico . The easiest way of creating a favicon.ico file is to convert an existing 16 X 16 BMP or GIF graphic with 16 – 32 colors into a .ico file using converter software making sure to save it as favicon.ico.

    Once you have created your favicon.ico file all you need to do is to upload it to any directory on your server that contains html pages. This way, when IE5+ searches for favicon.ico it will be bale to find it regardless of which page you are on.

    That’s nearly all the areas of favicon.ico covers apart from, what if you want different icons for different parts of your website? Can this be done? The answer is yes it can. All you have to do is place the following HTML code between the <head> and </head> tags of your web page.

    <LINK REL=”SHORTCUT ICON” HREF=”differenticon.ico”> (SHORTCUT ICON should be kept in uppercase).

    Now when someone adds a web page with that code to their favorites, IE5+ will not look for favicon.ico but will look for differenticon.ico and if it’s there it will display it, if not the default icon will be displayed.

    Using favicon.ico or the SHORTCUT ICON code is nice way to add a unique touch to your site, and of course will result in more repeat visitors than if you were not using it – which is always good for any webmaster.

    Article Written By Le

  • Everything You Need To Know About Meta Tags And More!

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

    Everything You Need To Know About Meta Tags And More!

    There’s a plethora of different META Tags that you can make use of on your site. Because there are so many, it’s impossible for me to cover all of them in this article. However, I will describe the most common ones. But let’s start from the beginning, shall we?

    What Are META Tags?

    META tags are similar to standard HTML tags. However, there is one big difference: You have to insert all META tags between the <head> </head> tags on your page(s). META tags are used primarily to include information about a document. The META tags will be invisible to your site’s visitors, but will be seen by browsers and search engines.

    For The Search Engines.

    Several of the major search engines make use of the META Keyword tag, and virtually all of them make use of the Description tag. These tags help the search engine spider determine the content of your web site so that it can be indexed properly.

    This is what they look like:

    <META name=”keywords” content=”Webmaster Resource Site”>
    <META name=”description” content=”Online Webmaster Resource Site”>

    You can also instruct the search engine robot/spider how to index your site using the robots META Tag. This is what it looks like:

    <META name=”robots” content=”noindex,nofollow”>

    What the tag above does is tell the spider not to index the page that it appears on, and not to follow the links on that page. Here’s a complete list of attributes for the robots tag:

    index – the default, the page is added to the search engine database

    noindex – the page is not added to the search engine database

    nofollow – the spider doesn’t follow the links on that page

    none – same as “noindex, no follow”

    To use any of these attributes simply replace the “noindex,nofollow” text in the example above with whatever you want to use. If you need to use more than one attribute, separate them with a comma.

    Client Pull.

    Have you ever seen a page that automatically refreshes to another URL after a few seconds? Did you ever wondered how it was done? I’ll tell you. The page made use of one of the http-equiv META Tags to automatically “pull” you to a different page after a few seconds. Here’s what the code looks like:

    <META http-equiv=”refresh” content=”1; url=newpage.htm”>

    The value of content denotes how many seconds will pass before the new page is called for. If you want it to happen as soon as a person hits that page, then set the value to “0”.

    Prevent Caching.

    If you want to prevent a page being saved in your visitor’s cache you can do so by inserting the following three tags:

    <META HTTP-EQUIV=”expires” CONTENT=”0″>
    <META HTTP-EQUIV=”Pragma” CONTENT=”no-cache”>
    <META HTTP-EQUIV=”Cache-Control” CONTENT=”no-cache”>

    Why would you want a page not to be cached? If your site is updated frequently and you always want your visitors to see the newest content/changes, or if you want to ensure that a new banner is loaded each time from your server when a page is accessed, you’ll want to use the tags above.

    A quick note here on banner caching: In addition to using the tags above, you’ll want to append random numbers at the end of the tag calling the image.

    Rating Your Content.

    By using the rating META tag on your site, you can specify the appropriateness of your web site for kids. The tag looks like this:

    <META name=”rating” content=”general”>
    In addition to the general rating, you can use three others. They are:

    mature

    restricted

    14 years

    Misc. Tags

    Below I’ve listed several other popular tags that you may have seen around the web.

    The generator META tag is used to specify what program was used to create your web site. Many HTML editing tools automatically insert this so that a company can gauge their market penetration. The tag looks like this:

    <META name=”generator” content=”program name and version”>

    The author tag is used to identify the author of a page. Simply replace “author’s name” with your name or email address.

    <META name=”author” content=”author’s name”>
    The copyright tag identifies the individual or company that holds the copyright to a particular page. This is what it looks like:

    <META name=”copyright” content=”This page and all its contents are copyright 2003 by Lee Windsor. All Rights Reserved.”>

    I hope this article gave you some insight into the usage of Meta Tags and how they can benefit your day to day business.

    Article written by Lee

  • Doorway Pages

    Date: 2011.02.22 | Category: Traffic, WebDesign | Response: 0

    A doorway page is built to rank high for a particular keyword or search phrase. When your doorway page is visited by the searcher it simply has a “click me” button which links to your web site. The major search engines accept these pages as long as the end result does provide what the searcher is looking for. If you are discovered to be using doorway pages for irrelevant keywords you can expect to have your entire domain unlisted. For instance, one of our doorway pages is built to rank high for the search term -Adult Content—which is quite acceptable because when the searcher gets here he can find links to adult content providers from our site. If however, he couldn’t find links to adult content then we would risk the wrath of the all powerful search engines.

    Once you have selected your keywords and phrases (about 50 would be the normal) you need to build a doorway page for each keyword and ideally, for each major search engine. All the major engines look for different keyword density in the text, title and description so you need to do some research by doing a search using your chosen phrase or keyword and studying the top 10 results at each engine (if you can spot them, study high ranking doorway pages).

    Make notes of how many times the phrase or keyword is used in the title, description and body text. Is it used in header text etc? Once you have built a picture of what your doorway page should look like you can build it using your favorite html editor. Once you have done one for a particular engine the other 50 or so pages can be done by simply replacing keywords for keywords. After you have done a page for each keyword move on to the next search engine. Remember that your body text is not important but make each page unique or it may be considered spamming. It is your keyword or phrase density that you are attempting to get right. The page, when visited by a person, will be recognized for what it is, simply a link to the real content so don’t worry too much about what it looks like. When a search engine spider visits the page it is only interested in counting the keyword density in your body text.

    As you have probably worked out there is quite a lot of work involved. 50 phrases or keywords=50 pages X the top 8 search engines= 400 pages. In reality though, you are only creating 8 doorways, 1 page for each search engine. For all the other pages you simply have to substitute the keyword for the next and alter the text around so as not to finish with 50 identical pages. OK, nearly finished but the next step is crucial if your doorways are to work.

    Put all your pages in a folder on your server e.g. Mydomain/doorways/. Then create 2 more pages that have a link and a small description to each of your doorways (200 on each) and to each other. These are called corridor pages because the spider travels down them, visiting each page linked off them. Call these 2 pages index and home and place them in the folder with your doorway pages. Then place links to these two pages from your main index page so that a spider will be able to find them and list all your doorways. Submit only your index page and your 2 corridor pages. Do not submit your doorways to the engines.

    Ideally, and if you can afford it, you should set up a new domain and host for your doorways. This isn’t essential but it does have benefits. These are: If you do get over zealous with your doorways and an engine does ban you for spamdexing at least your real site will be safe. Engines rank sites higher if they have lots of links to them from other domains. You can put your most important keywords in your new domain name, which will increase the ranking of the doorway pages containing those keywords.

    Now all you have to do is wait for the engines to update their databases. We have had the best results with Google.

    Article written by Lee

Premium Sponsors















Categories

Site Links