Event Tracking Pixel without using javascript?

Hi Everybody,

I am using the Newsmax feed network, I need a tracking pixel. I can’t use javascript.

This is what I have to work with from Newsmax:
“Either an event URL or image tag are supported, JS code is not allowed”

I am not a programmer so if anybody could help point me in the right direction.

Could I use this:

https://datastreamanalytics.com/matomo.php?idsite=2&rec=1&idgoal=1

Following is my current tracking code for my website:

<!-- Matomo -->
<script type="text/javascript">
  var _paq = window._paq || [];
  /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
  _paq.push(["setCookieDomain", "*.mg.monetarygoldgroup.com"]);
  _paq.push(['trackPageView']);
  _paq.push(['enableLinkTracking']);
  (function() {
    var u="https://datastreamanalytics.com/";
    _paq.push(['setTrackerUrl', u+'matomo.php']);
    _paq.push(['setSiteId', '2']);
    var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
    g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
  })();
</script>
<noscript><p><img src="https://datastreamanalytics.com/matomo.php?idsite=2&amp;rec=1" style="border:0;" alt="" /></p></noscript>
<!-- End Matomo Code -->

Thanks Everybody