-
There’s Face Value And Then There Is Real Value
How often do we sign up to affiliate programs based on their standard terms of service for example, Sponsor A will pay you $35 for every signup you send to them and they tell you they convert at roughly 1:200 whilst Sponsor B will pay you $30 per signup and they convert at roughly 1:200 also, which of these scenarios straight off the bat will make you the most money? Think about your answer first then read on.
Negotiate The Figures.
Most, if not all of us would have immediately chosen Sponsor A for the pure fact that they pay you $5 more per signup and they convert at the same rate as Sponsor B however, how many of us would have written or icq’d Sponsor B and asked them to raise their payout? Not many of us I would guess. With that said, what is to stop you from emailing a certain ‘Sponsor B’ if you are able to convert consistently at their published 1:200 and asking for a higher pay rate to continue sending your traffic to them? Nothing at all and, surprisingly enough, I would guess that for most programs, they would actually increase your payout if you have a history with them.
Haggling The Costs.
The example above used a sponsor as the main focus however, how many times have you spent money at a content provider? A hosting company? A traffic broker? Have you actually taken a moment to ask these companies if they would give you a lower rate on the services they are providing you with? Again, I bet not many of us have I know it was only recently when I started asking for long term customer discounts and the likes. In fact, from the first point of contact you have with any company online, be they an adult web host, adult traffic broker, content provider or, in fact, an affiliate program, spend an extra few seconds when you first sign up and see how they can improve their service for YOU. To your surprise they might just cut you a deal that is unmatched anywhere else!
Don’t Undersell Their Products.
With the above said, one thing that you need to be aware of is that if you start making absurd price cuts from these companies you will probably be told to politely take a running jump however, lets say you were going to be charged $50 for something, ask them if you can get the same service at a 10% discounted rate if you use them again, perhaps not even on the first purchase but on the second, the third, etc.
By contacting these companies directly and not just going on ‘face value’ even if you only save yourself one or two dollars per purchase over a year those odds and ends soon add up to a nice saving.
Saving Money – Recap.
In essence many of us take things at face value whether we are talking to friends and peers or whether we are paying for goods and services but, by at least in asking for a discount on our purchase the worst thing that will happen is that you get told ‘no’ however, on the flipside of the proverbial coin, you might just find yourself a better bargain than you had already found in the first place and that’s some food for thought.
Article written by Lee
-
Cascading Billing – Using Multiple Payment Processors For More Profit
‘Cascading Billing’ has been somewhat of a buzz word of late in the online industry however, there seems to be some confusion as to what this billing process actually involves or even does other than ‘process payments’ this is what we will take a look at in this brief article.
Cascading Billing – The Basics.
Simply put, Cascading Billing is a method to enable your surfers to buy membership to your site or, products utilizing multiple third party credit card processors and, other payment options. The process used, as its name suggests, is that of a ‘cascading’ feature meaning that, if you have multiple processors set up on your site and a surfers credit card is declined on your primary processor, the details will then be passed onto a secondary credit card processor where, they will either be accepted or declined and, if declined, the details can then be passed onto yet another credit card processor or, some alternate payment solution.Cascading Billing – The Benefits.
From the initial reaction this new payment process has received in the online community it would appear that this new solution actually does work and, work well. Many companies who are adopting the ‘Cascading Billing’ process are reporting an increase in sales, some reporting upto a 20% increase over the normal procedures they used. This increase in sales also enables affiliate programs to pass the new found benefits onto the webmasters themselves through raised payouts and better sign-up ratios.Cascading Billing – The Options.
As with any type of online payment processor or, payment system, you need to evaluate what your individual needs are and, using a cascading billing program is no different. With many solutions currently available and in development stages the choices for webmasters and program owners are growing and growing.However, that said, first and foremost you need to choose which processors or, billing solutions you will use to begin your cascading billing. In an ideal world, you should choose two of the more reputable third party payment processors as your primary and secondary processor in addition to a tertiary payment option or, perhaps even a custom dialer solution. Generally speaking, this will give you the best way to monetize your own and, your webmasters traffic.
Cascading Payment Solutions – Overview.
When all is said and done, cascading billing offers webmasters and online e-business owners ample opportunity to increase their profits through minimal outlay either by renting the scripting that will allow you to utilize the cascading billing option (costs from $300 a month) or, having such a solution custom coded which, you can have done from as little as US$5000. Either way i am certain we will start to see many more of the top online companies offering this type of payment solution in the near future and, with some of the larger online companies already adopting this method, it is sure to start happening soon.Article written by Lee
-
Cascading Style Sheet Basics
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.
-
Using JavaScript To Auto Scroll Text
Using JavaScript To Auto Scroll Text.
There may come a time when you would like to have some text on a page that is simply just to big to fit on a single page. Of course, you could always create a new document for this text but, what if you could make the text actually scroll through the surfers browser?The following JavaScript will do just that.
Place the following section of JavaScript coding between your <head> and </head> tags:
<SCRIPT LANGUAGE=”JavaScript”>
<!–function scrollit() {
for (I=1; I<=1200; I++) window.scroll(1,I);
}// –>
</SCRIPT>Along with the following JavaScript coding someone in the Body of your page:
<FORM>
<INPUT type=button value=”scroll” onClick=”scrollit()”>
</FORM>Have a play around with the numbers in the first section of the JavaScript to speed up and slow down the rate of scrolling until you find a speed that is easy on the eye.
Article written by Lee
-
Online Adult Laws – Privacy Policies
To many webmasters and companies working online the fundamental basics of their business is to turn a profit through effective online marketing campaigns and promotions however, within all of this profit making there is a side of business that is so often overlooked or, forgotten entirely, what is this business practice? The law.
In this brief article we will take a look at one such law that comes into effect in California on the 1st July 2004 namely, that all ‘web sites that collect any personal information from consumers to post a privacy policy’. Whilst this in itself is the first law of its kind in the United States it is worth mentioning that this is only a State law that affects California however, that said, where one state starts, others are sure to follow especially considering the huge potential left for the growth of the internet.
Privacy Policies – How Does This Effect You?
The main factor that you must take into consideration with this new law from California is that, because the Internet is truly global, you have no way of telling where one of your surfers are coming from thus, a surfer entering your site from California, may be making you break the law by not displaying a privacy policy should you collect their information. Incidentally, this new privacy policy law does not state what ‘collected’ information requires you to post a policy however, it would seem that personal information such as addresses, phone numbers and email addresses would be the primary target of this new Californian online law.Privacy Policies – The Basics.
So what is a privacy policy, in essence, it is a document informing your site visitors / customers that any information you collect from them, including user submitted information will be used in a specific way, this might be a case of solely being used by yourself or, specifically if you rent out this information you need to tell your surfers / customers exactly who you are renting this information to.Privacy Policies – Overview.
Whether you collect personal information from you site visitors or not the one thing that makes sense is to have a page created ready for the 1st July 2004 so that you can have it online for when you need it, perhaps storing this page on a central domain and linking to that page from all of your other web sites would be the best method to go as far as ensuring you are covered from prosecution or, perhaps creating a keyword rich privacy policy which you can get listed in the search engines is the way to go after all, just because this will become a legal requirement for you it does not mean that you cant profit from the potential traffic going to that page.Article written by Lee
-
TGP Posting – Automating Submissions Responsibly
TGP Posting – Automating Submissions Responsibly.
Many an experienced webmaster has endured first hand the labor intensive process of manually building a submitting large quantities of image galleries to TGP’s in an effort to drive traffic, whether it be to their own site or a sponsors, in a bid to generate money. One quickly learns that creating a gallery template is the way to go, whereby one can more quickly and easily swap out the reciprocal links for the TGP’s, which means building customized galleries is more efficient, before going off to submit them to all the relevant TGP’s…But this is only the beginning of the story. Manually visiting and posting to all of the TGP’s (there are literally thousands of them) takes a lot of time. Moreover, one must stop and read the rules for each TGP to ensure one is staying within the specified guidelines…
There is an easier way! Enter the Thumbnail Gallery Submission Wizard (TGSW). It takes much of the labor intensive work out of producing galleries for, and submitting them to, TGP’s. Available in both desktop (PC) and server (Perl based) versions, TGSW has gained rapid and widespread acceptance as the de-facto TGP gallery automation tool. Some of it’s features include:
Fully Customizable Gallery Templates.
You can create templates on a niche by niche basis, inserting appropriate sponsor codes and images. For the thumbnails and images they link to, you simply insert some intuitive ‘placeholder tags’, which are interpreted by TGSW at run-time and replaced with the appropriate images. You can be flexible as to how many thumbs/images you would like displayed per gallery to meet your own personal preferences.
Automated Reciprocal Link Insertion.
You can also insert placeholder tags for the automatic insertion of reciprocal links. At run-time, TGSW will insert a specified number of reciprocal links in the positions you have inserted those tags in your templates.
Customizable Filenames.
You can specify filename options so that when TGSW generates galleries, the filenames it uses are unique to your galleries.
FTP and ‘Free Host’ Support.
Do you host your galleries on a free host? Or simply on another of your servers? TGSW can be configured to FTP the completed galleries (along with images and thumbs if necessary) to a server of your choice. There is also a lot of support for ‘free hosts’ that don’t have FTP, but instead used a browser-based upload manager.
Automatic Gallery Submission.
TGSW will then automatically submit all of the galleries it generates to all of the appropriate TGP’s. It even sends an email to the TGP’s that require submissions via that method! TGSW can even be configured to place all of your submissions via a proxy server, so you can mask the IP address from where you submit.
Extensive Reporting.
There is an optional reporting feature that you can turn on or off. When turned on, TGSW logs all of the submission information at the point of submission, which you can review at your leisure at a later time.
Regular Updates.
TGP’s come and go, so TGSW offers an auto-update feature, whereby it will download the latest copy of the database from our site. We usually update at least once per week, sometimes more often, to keep your database current.
Of course, due to the personalized nature of your galleries, there will be some significant configuration work to do before one can hope to achieve any real results with TGSW. One of the key points is that we do not ship the product with any TGP’s enabled – this way, you are responsible for your own usage of TGSW, and are forced to at least visit the TGP’s in question – we do this in an attempt to remain responsible.
If you have neither the time nor the inclination to configure the TGSW TGP database yourself, then I highly recommend http://www.tgswupdates.com. They have spent extensive time configuring the current TGSW database for 55 niche categories, and offer fully-configured updates very soon after we release a new auto-update – not only will you be up-to-date, but you will also have all of the available TGP’s enabled, along with all of the reciprocal link images ready to start posting!
Article written by Robert Purdy.
-
Mixing Business With Pleasure
Regardless of your status in the world of web mastering there will come a time when you will want to attend one of the numerous webmaster seminars. However, what should you do to plan for the day you attend your first seminar, are there some things you should aim for and things you shouldn’t? Well in this article we will take a look at planning your conventions.
Before attending the convention of your choice there are a few things that you should prepare these are.
Exercise.
get out for half an hour each day at least two weeks before the day of your journey to the convention. You will be surprised at how much time you will spend walking around the convention floor and, by getting some basic exercise in before hand you wont feel the strain of being on your feet for hours at a time instead of being sat in front of your computer.
Contacts.
Make a list of people that you want to see and arrange with them in advance a time to meet up and have a chat. Most people who attend these conventions are busy for the entire course of the show. You may not get a chance to pop by their booth and talk tot hem if someone has already beaten you by booking a time to chat with the person you want to meet. It is also a good idea to trade hotel and cell phone information before leaving for the show, this way, if anything happens to make you miss a possible appointment you can call or leave a message informing them you will either be late or canceling.
Seminars / Parties.
Take a look at the events and seminars happening at the convention before you go, plan which ones you will want to attend make a list and take it with you. This will save you countless hours of wandering around aimlessly hoping to make all of the seminars and get to as many parties as you can in three days.
Booths.
Look at who is exhibiting at the convention, find out their booth number and make a note of it. List any specific details you may want to speak to the booth owners about. You can guarantee if you go unprepared you will miss out that important question or selling opportunity you wanted to make.
Baggage.
When packing your suitcase for the convention make sure you leave plenty of room for convention give a ways, You will be surprised at what you will be given for free at these shows, t-shirts, toys, books, flyers, you name it, you will be offered it.
So, you have done the pre check, what do you do when you actually arrive at the convention?
Food.
Eat at every opportunity you get. Most people will end up not eating for the entire length of the convention. perhaps even arrange to meet up with someone you want to talk to in a restaurant and grab a bite to eat whilst talking business.
Business Cards.
Take them and lots of them. Everyone and anyone will ask you for your contact details, if you have a bunch of business cards with you at all times, you can just hand them out. Make sure you include your full contact details, your name, nickname, email, icq and, aim contact details. The more ways you give someone to reach you, the more chance you have of them actually attempting to get in touch with you.
Clothing.
Wear comfortable, clothing and shoes. Think casual but, also think business, shorts and t-shirt may be good for comfort but, it doesn’t portray a good business image and, that’s the sole reason you are attending the convention, to do business.
Parties.
If you get offered an invite to a party, take it, plans change so quickly at the conventions, your friends may suddenly feel tired and you have nothing left to do, attend a party, then you have another opportunity to network some more.
Behavior.
Although the conventions are a fun atmosphere, don’t forget that they are in the first instance a place to do business, treat it as such, you may miss out on the ideal business opportunities if you are acting like a drunk ass hole. This will reflect badly on you long term.
You have taken in all the events you can handle, you have made your way back home what next? how exactly do you put this information and your new found contacts to use?
Business Cards.
Go through all the business cards you have been given and send your new found contacts a quick email thanking them for their time. This will be a good way for you to give them another reminder of what you spoke to them about and, I have personally gotten more business from the shows using this follow up method than if I had just waited for them to contact me.
Notes.
If you made any notes at the show, take a few minutes to re-write them, keep them safe in a notepad, you never know when one of these bits of information may come in handy.
Well, that’s pretty much it for the basics of the adult conventions, obviously there is more to it than this but, if you are attending your first convention you will have a bit of insight into the work involved.
Article written by Lee
-
Becoming A Webmaster – Communication Home Truths
Ok, we are ALL guilty of the things that are going to be mentioned in this article in one way or another, this article isn’t going to be a ‘see I told you so’ session rather an explanation of how and why certain things happen from time to time in the adult industry and, how they can be overcome.
Get ready, his may make you realize the way you have been managing your time this far has been completely and utterly wrong.
Message Boards.
A great tool to the webmaster, virtually every resource site owner and their friend has one but, there is one thing that you are not being told as often as you should about them, they ARE counter productive to YOUR work schedule. Think about it, how often do you access a discussion forum on a daily basis? Two, three, four times? maybe more? That time you could be using more effectively, coming up with new ideas, putting sites together, tweaking your traffic sources etc.I would whole heartily agree that there IS a need for forums but, at the same time, what would happen if every time we went to post a message we left it and posted a selection of them in some time put aside for doing so? Another thing regarding message boards, they are there to benefit the webmaster, we can let our sponsors know when we have issues, we let other webmasters know when we have issues with them and, we also ask for help and advice, as I say a great tool to the webmaster but also one that should IMHO be used with a little modicum.
Instant Messaging Clients.
Again, another great global communications tool for webmasters, we get in touch with our sponsors, our peers and our friends and family but, how many of us spend countless hours a day conversing back and forth about things that, quite frankly, are of little or no importance? Who can honestly say they have time set aside each day to purely log onto your messaging client to just communicate with people? I know I am guilty of keeping my client on 24/7 and answering messages almost instantly whilst also bugging my peers for idle chit chat.Email.
The Bain of every webmaster, speaking from personal experience, if I don’t check my email 50 times a day I check it 100, first thing I do in the morning, check my email, last thing I do before I go to bed? Check my email. I realize there is absolutely no need for me to do this but, non the less I do, its almost as if I have become addicted to checking my mail. I’m sorry to say it but, again, this is one thing that we probably couldn’t live without but, we can certainly cut down the time we check our email each day. If I never had to reply to an email again, I would be happy, as it is I get close to 200 business related emails on a daily basis and, lets be honest, I rarely reply to them the same week.Sponsor Statistics.
Again, another GREAT tool that we are kindly given by our sponsors but, again, even this simple tool can become a Bain to the webmasters workload. How many times do you check your stats on a daily basis? Hell, even I will admit to checking them 3 times a day and, yes, I know even this is to many times. Some sponsors now have stats by email, again, this is better than logging into your stats each day but, it also adds tot he problem with email checking above. Basically, there is only a need to check your stats once a day if that. I used to check them every hour then, for whatever reason, I checked them once a week, then I slowly got back into the phase of checking them morning, noon and, night. The stats are still there every time I look so why do I bother? I guess that’s one of the mysteries of life but, I know I spend far to much time checking them and waiting to see an additional sign up or two on top of what I already have.Anyway, I’m going to leave this article alone at this point, as, the above would seem to be the most popular methods of wasting time on a daily basis, we all know we waste our time and we all know that what we need to do is manage it better but, how and when, getting our time management sorted out takes time in itself.
Article written by Lee
-
Protecting Your HTML Code With JavaScript
We all know that source code theft is wrong and covered by copyright never the less some webmasters will inevitably try to steal the work that the honest ones amongst us create.
Unfortunately, there is no sure fire way to stop people from stealing our HTML code but, we can make it hard for them.
The following JavaScript coding, when placed in your <body> tag can make it harder for the opportunistic webmaster to steal your coding.
Simply copy and paste everything below into your body tag and change the text in the var message=”” field.
<!–Start Copy–>
<SCRIPT language=”JavaScript”>
<!–
var message=”Copyright 2000 by Your Site. WARNING ! All content contained within this site is protected by copyright laws. Unauthorized use of our material is strictly prohibited.”;
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// –>
</SCRIPT>
<!–End Copy–>Whilst this is not a sure fire way to stop the occurrence of HTML theft as mentioned already it will deter those webmasters who perhaps were there for the simplistic reason of viewing your source code.
Article written by Lee
-
Everything You Need To Know About Meta Tags And More!
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
Premium Sponsors
Categories
- 2257
- Billing Solutions
- Blogging
- Branding
- Content
- Domain Names
- Employment
- Forms & Contracts
- General
- Hosting
- Link Lists
- Opt-in Mail
- Paid Traffic
- Pic Posts
- Promotion
- Scripts
- Search Engine Optimization
- Sponsors
- TGP
- Traffic
- Tutorials
- Viral Marketing
- WebDesign
- Writing