CAN ANYONE EXPLAIN WHAT A CUSTOM CHANNEL IS ON GOOGLE ADSENSE?

Question by Dominick:
can anyone explain what a custom channel is on google adsense?
i have a web site and i recently joined google adsense. i am lost. i dont comprehend about the scripts or channels or what im supposed to do. their instructions dont explain good enough for me someone please help.
——————————————
Answer by shalini bhalla
In google absence you need to choose the advertisement type , size , color etc , they will give you the ready to use code which you need to put on your website. Channels are kind of categories you want to relate to which you want to display advertisements.
for e:g : if my website is related to travel , i will put channels as : travel agents , reavel packages , tours and travels etc which are related to my website and google will display advertisements accordingly
——————————————
Know better? Leave your own answer in the comments!









about 2 years ago
with the help of the below tags we can insert our java script in to HTML code
< % Write the code between this %>
about 2 years ago
Javascript can be inserted a number of ways: via an external file or written right into the html doc. You must specify the script language in your headers so the browser knows what to do with them when encountered in the script.
about 2 years ago
go to tools,internet options,security, click on custom level,scroll all the way down, the second to the last has java script click enable then ok.
about 2 years ago
Enter the java code in between the
Tags.about 2 years ago
An easy way is to create a function in the head of the html like:
function sending()
{
alert(“Checking Data”);
}//EoFn sending()
then call it in the body of the document when you need it by:
about 2 years ago
There are two most common Ways of Inserting javaScrip in an HTML document
tags by Writing a script Tag Like This1) in between the
2) the second method is that you have to make an External File and include that file in your html document
just like this
Note: That External File Should be Saved with .js Extension
about 2 years ago
I read every answer you had and I’ll tell the easiest one:
…An advice my friend always integrate the script in the head section so you be sure to load the script before loading the body, and then you can call your function whenever you want, on a button click for example:
or on body load example:
about 2 years ago
you should have mentioned which html editor you are using. each one is different