JDP*_*ler 4 html css ads adsense
再会,
如果这可能是一个重复的问题,我很抱歉,但大多数问题都涉及 Google AdSense,我从未使用过。
说到点子上,我想知道是否有人知道如何将来自 Google 的广告添加到 HTML 5 站点。
我正在做一个项目。实际的站点文件将在本地驱动器上,但我想在我的页面上插入一个,它会随机绘制一些 Google Ads 并将它们放置在此部分中。
我不想创建广告或任何类似的东西。假设我有一个 600 像素 x 100 像素块的部分,我希望“绘制”某个类别的任何广告,以便在运行时放置在那里。
就像我说的页面本身将是本地的,但使用互联网访问页面应该获取这些广告。
预先感谢您的快速回复,如果我解释过多,我想道歉。
小智 5
在 HTML 中插入 Google Adsense 非常容易,只需将您的代码粘贴到body标签中并使用引导程序或 CSS3 进行定位。
<html>
<head>
This is the head of your page
<title>Example HTML page</title>
</head>
<body>
**Paste your google adsense code inside the body**
This is the body of your page.
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></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>
Run Code Online (Sandbox Code Playgroud)