Here is the full implementation, all this just pasted into the HTML element.

<html>
<head>
 <title>CV Preview</title>
 <meta charset="utf-8"/>
 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
 <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1"/>
</head>
<body style="margin: 0px">
 <div id="adobe-dc-view"></div>
 <script src="https://acrobatservices.adobe.com/view-sdk/viewer.js"></script>
 <script type="text/javascript">
    document.addEventListener("adobe_dc_view_sdk.ready", function()
    {
        var adobeDCView = new AdobeDC.View({clientId: "**YOUR_CLIENT_ID_HERE**", divId: "adobe-dc-view"});
        adobeDCView.previewFile(
       {
          content:   {location: {url: "**YOUR_URL_HERE**"}},
          metaData: {fileName: "**YOUR_FILE_NAME_HERE**", hasReadOnlyAccess: "True"}
       });
    });
 </script>
</body>