Where to place the Adsense code in your HTML (ad units)

Adsense - How to get and copy the code for Auto ads
Adsense - How to get and copy the code for Auto ads
Adsense - How to get and copy the code for Auto ads

Code implementation guide

Where to place the Adsense code in your HTML (ad units)

Place your ad unit code between the <body> and </body>  tags on your HTML page #adcode#adunits

After you get and copy your ad unit code, you need to paste it between the <body> and </body> tags of your page. If you paste the ad code outside the <body> tags it will prevent your ads from appearing correctly.

Tip: For help with HTML, try searching for online resources using terms like “HTML basics

Example HTML page before the ad unit code has been added

—————————————————————————————————

<html>
<head>
This is the head of your page.
<title>Example HTML page</title>
</head>
<body>
This is the body of your page.
</body>
</html>

—————————————————————————————————

Example HTML page with the ad unit code added in the body

—————————————————————————————————

<html>
<head>
This is the head of your page
<title>Example HTML page</title>
</head>
<body>
This is the body of your page.
<script async src=”https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1234567890123456″ crossorigin=”anonymous”></script>
<!– Homepage Leaderboard –>
<ins class=”adsbygoogle”
style=”display:inline-block;width:728px;height:90px”
data-ad-client=”ca-pub-1234567890123456″
data-ad-slot=”1234567890″></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

</body>
</html>

——————————————————————————————————-

Note: This is sample code only, please don’t use it in your own site’s HTML.

Positioning the ads on your site with HTML

Just like the other elements of your site (images, paragraphs, etc.), you can change the position of your Google ads by using HTML tags (<div><table>, etc.). For example, if you surround your ad code with the HTML tags <div align="center"> and </div>, your ads will appear in the center of your page.

———————————————————————————————————

<html>
<head>
This is the head of your page
<title>Example HTML page</title>
</head>
<body>
This is the body of your page.
<div align=”center”>
<script async src=”https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1234567890123456″ crossorigin=”anonymous”></script>
<!– Homepage Leaderboard –>
<ins class=”adsbygoogle”
style=”display:inline-block;width:728px;height:90px”
data-ad-client=”ca-pub-1234567890123456″
data-ad-slot=”1234567890″></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</body>
</html>

Note: This is sample code only, please don’t use it in your own site’s HTML.

Be the first to comment

Give Feedback About This Article