How to translate third party code to Wix API code?

Perhaps someone could be able to assist me, I have a very simple third party code that I am trying to implement on my website. When I try to add the code via the HTML app nothing shows up on my Wix page. I have tested the code through other platforms and it works perfectly. Could anyone tell me specifically what it is I need to change in the code in order for it to appear on my website:

Coupons powered by Coupons.com

A table like the one pictured should then display like the image I attached on my webpage but its just blank

Hi,
I wrapped this code in HTML component and it’s working for me:

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
<noscript> <p>Coupons powered by <a href="https://www.coupons.com?pid=13903&nid=10&zid=xh20&bid=1472100001">Coupons.com</a></p> 
</noscript> 
<script id="scriptId_718x940_175981" type="text/javascript" src="//bcg.coupons.com/?scriptId=175981&bid=1472100001&format=718x940&bannerType=3"> 
 </script>
</body>
</html>

Good luck!
Roi.

This is EXACTLY what I needed thank you so much!!!