โ† gamearchive.com

Partner ads

Free banners for sites that want to send players to Game Archive. Click any preview to open gamearchive.com. Download the image or ready-to-paste HTML below.

How to use

  1. Set your partner name (optional) so we can credit traffic from your site.
  2. Click a banner preview to test the link โ†’ gamearchive.com.
  3. Download the image, the full HTML file, or copy the snippet into your page.

Links become https://gamearchive.com/?ref=partner โ€” we track this automatically.

Direct asset URLs

Hotlink from your site if you prefer (hosted on gamearchive.com):

https://gamearchive.com/images/ga-ad-wide-enter.jpg

https://gamearchive.com/images/ga-ad-square-play.jpg

Questions? Use the comments on the homepage (mark Private if you want).

\n'; } var input = document.getElementById('partnerRef'); var preview = document.getElementById('refPreview'); function refresh(){ var ref = sanitizeRef(input.value); preview.textContent = destUrl(ref, 'banner'); document.querySelectorAll('.ad-link').forEach(function(a){ var art = a.closest('.ad'); var kind = art && art.getAttribute('data-ad'); if (kind && ADS[kind]) a.href = destUrl(ref, ADS[kind].campaign); }); Object.keys(ADS).forEach(function(kind){ var el = document.getElementById('code-' + kind); if (el) el.textContent = snippet(kind, ref); }); // Update download HTML links as blob data-href via click handlers (static files still work as default) } input.addEventListener('input', refresh); refresh(); document.querySelectorAll('.copy-snip').forEach(function(btn){ btn.addEventListener('click', function(){ var kind = btn.getAttribute('data-kind'); var ref = sanitizeRef(input.value); var text = snippet(kind, ref); function ok(){ var old = btn.textContent; btn.textContent = 'Copied!'; btn.classList.add('copied'); setTimeout(function(){ btn.textContent = old; btn.classList.remove('copied'); }, 1500); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(text).then(ok).catch(function(){ window.prompt('Copy this HTML:', text); }); } else { window.prompt('Copy this HTML:', text); } }); }); // Download HTML with current partner ref baked in document.querySelectorAll('.dl-html').forEach(function(a){ a.addEventListener('click', function(e){ e.preventDefault(); var art = a.closest('.ad'); var kind = art && art.getAttribute('data-ad'); if (!kind) return; var ref = sanitizeRef(input.value); var blob = new Blob([fullHtml(kind, ref)], { type: 'text/html;charset=utf-8' }); var url = URL.createObjectURL(blob); var tmp = document.createElement('a'); tmp.href = url; tmp.download = 'gamearchive-ad-' + kind + (ref !== 'partner' ? '-' + ref : '') + '.html'; document.body.appendChild(tmp); tmp.click(); tmp.remove(); setTimeout(function(){ URL.revokeObjectURL(url); }, 2000); }); }); })();