4

I've created an HTML5 based banner with Google Web Designer. When published it saves as an HTML file. My question is: how do I put this HTML ad on my site? Should I include the HTML file in some way?

Jeremy
  • 1
  • 85
  • 340
  • 366
user3182261
  • 271
  • 2
  • 10
  • 21

2 Answers2

2

There are three ways to include your creation to a website.

  1. Include all assets(multimedia) and HTML in the page with the required js/css that was exported from GWD.
  2. Upload the whole folder on your server and serve it as an iframe.
  3. Get a DoubleClick Google Ad Manager account and upload your creation there. Then include the code generated by DoubleClick Google Ad Manager in your website. Best method in my opinion.(faster loading times, no extra server loading, easy tracking of ads)
fat_mike
  • 877
  • 12
  • 27
-3

I found this example on w3 schools:

<object width="1000" height="300" data="gwd_preview_myBanner/index.html"></object>

where gwd_preview_myBanner/index.html is a relative path to the banner itself - the HTML file produced by Google Web Designer.

Toby Speight
  • 27,591
  • 48
  • 66
  • 103
asrowley
  • 1
  • 1
  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - [From Review](/review/low-quality-posts/13230624) – Jed Fox Aug 04 '16 at 20:33
  • ah - I edited this an the line of code seems to have vanished... Sorry my first time answering...edited (I hope) – asrowley Aug 04 '16 at 21:00