BIGGESTPROFITSONLINE.com

I'LL TEACH YOU.
BIGGEST PROFITS ONLINE
ABOUT US
CONTACT US
SITE MAP
BUILDING A WEBSITE
MAKE MONEY WITH CLICKBANK
MAKE YOUR OWN EBOOK
#1 THING TO SELL ONLINE
WHAT TO SELL ON EBAY
GOOGLE ADWORDS
FREE WEBSITE
WAYS TO MAKE MONEY ONLINE
HOW TO ADD ADSENSE TO MIC
HEPLFUL VIDEOS
HELPFUL LINKS
WHY GET A WEBSITE
WHY SELL ONLINE
HOW TO MAKE MILLIONS ONLI
MAKE MONEY WITH YOUTUBE
MAKE MONEY WITH MYSPACE
MAKE MONEY WITH FACEBOOK
MAKE MONEY BECOMING AN AF
GLOSSARY OF INTERNET TERM
HOW THE INTERNET BEGAN
GETTING A DOMAIN NAME
                 HOW TO ADD ADSENSE TO YOUR MICOSOFT OFFICE WEBSITE



This method inserts the Google Adsense ads directly into the page, without violating Google's Terms and ConditionsIf you put Google Adsense code into the HTML module, you will violate Google's Terms and Conditions, which result in getting kicked out of Google Adsense! 

 

2.  Create your ad and copy the code into notepad.1. Sign up for a Google Account and Adsense,

 

3.  Add <![CDATA[  before the comment tags (<!--) and ad ]]> at the end of the comment tags (//-->), like the example below.  This does not violate the terms and conditions because tags will be removed when the page is rendered.

 

Before adding <![CDATA[ ]]>:

<script type="text/javascript">

<!--
google_ad_client = "pub-4773491283295080";
/* 160x600, created 4/1/08 */
google_ad_slot = "0237614524";
google_ad_width = 160;
google_ad_height = 600;
//-->

</script>

<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>

 

What the code should look like:

<script type="text/javascript">

<![CDATA[<!--
google_ad_client = "pub-4773491283295080";
/* 160x600, created 4/1/08 */
google_ad_slot = "0237614524";
google_ad_width = 160;
google_ad_height = 600;
//-->]]>

</script>

<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>

 

4.  Next insert a Custom Footer module into the page, you will need advanced design features turned on before you can do this.

 

5.  Either, remove everything between the <template> tags so that it looks like to the code below, or you can also just replace everything in the Custom Footer module with the code below as well.

  

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:output method="html" />

<xsl:template match="/">

   

</xsl:template>

</xsl:stylesheet>

 

6.  Paste the modified Google Adsense code between the <template> tags, like the example below.

 

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:output method="html" />

<xsl:template match="/">

<script type="text/javascript">

<![CDATA[<!--
google_ad_client = "pub-4773491283295080";
/* 160x600, created 4/1/08 */
google_ad_slot = "0237614524";
google_ad_width = 160;
google_ad_height = 600;
//-->]]>

</script>

<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>

</xsl:template>

</xsl:stylesheet>