Framing issue

I am putting in a code and for some reason it is not being contained in the body and going off the side of the page any idea what would cause this? I have never had an issue before when I put it in the column text box.


Page: https://76cba89f99.nxcli.io/sales/nysales/


Code:


<!DOCTYPE html>

<html lang="en">

<head>

   <meta charset="UTF-8">

   <meta name="viewport" content="width=device-width, initial-scale=1.0">

   <title>Sample HTML Document</title>

 

               <script src=https://code.jquery.com/jquery-3.5.1.slim.min.js></script>

               <script src=https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js></script>

               <script src=https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js></script>

               <script src=https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js></script>

               <script src="https://cdn.jsdelivr.net/gh/scottgruenewald/[email protected]/table.js"></script>

               <link href=https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">

 

</head>


<body>

   <article class='w-75 p-2'>

       <h1>Sale Header</h1>

       <p>Sale Disclaimer</p>

       <article></article>

   </article>

</body>

</html>


<script>

 

const nyURL = 'https://docs.google.com/spreadsheets/d/e/2PACX-1vTncsFPbgDZgbId6M0M48PztV7AnyblTHCuEcA-NMttncTZXcUeN6mo1vLwp9AijMOLXuXTXcKvU72P/pub?gid=0&single=true&output=csv';

const nyTable = new GoogleSheetTable(nyURL, 'article', 'New York Sales', 'We have no sales scheduled in New York at this time.');

nyTable.fetchAndRender()

 

</script>

Comments

Sign In or Register to comment.