为网页级广告生成广告代码后,您需要将此代码放置在要展示广告的每个网页中。您应将广告代码放置在网页的 <head> 标记(或正文顶部)中。
<html>
<head>
这是您网页的标头部分。
<title>示例 HTML 网页</title>
</head>
<body>
这是您网页的正文部分。
</body>
</html>
在 <head> 标记中添加了网页级广告代码的 HTML 网页示例
<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>
这是您网页的标头部分。
<title>示例 HTML 网页</title>
</head>
<body>
这是您网页的正文部分。
</body>
</html>
如果您无权访问网页的 <head> 标记,则可改为将广告代码放置在正文顶部:
<html>
<head>
这是您网页的标头部分
<title>示例 HTML 网页</title>
</head>
<body>
<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>
这是您网页的正文部分。
<!-- 512-笔记网 jb51.cc -->
</body>
</html>
原文链接:https://www.f2er.com/html/527514.html