putting code in the header

Edit the PAGE_CONTAINER template.

Can someone tell me where in the PAGE_CONTAINER template this code would go?

Thanks, Where in the template can I add code?
This is the example google uses:

<html>
<head>
<script async src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-123456789",
enable_page_level_ads: true
});
</script>

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