Advertisement
devraselmiah

stock-out-report

Jul 6th, 2024
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.91 KB | Source Code | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="UTF-8" />
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6.     <title>Klassy Parcel Report</title>
  7.  
  8.     <style>
  9.       * {
  10.         font-family: "Inter", sans-serif;
  11.         padding: 0;
  12.         margin: 0;
  13.         box-sizing: border-box;
  14.       }
  15.       main {
  16.         padding: 18px;
  17.       }
  18.       .report-head {
  19.         background: #f5f5f5;
  20.         padding: 12px 18px;
  21.       }
  22.  
  23.       .report-head-p {
  24.         font-size: 16px;
  25.         font-weight: 500;
  26.       }
  27.  
  28.       .report-div-p {
  29.         margin-top: 6px;
  30.         font-size: 14px;
  31.       }
  32.  
  33.       /* Table Styles */
  34.       table {
  35.         width: 100%;
  36.         border-collapse: collapse;
  37.         margin-top: 30px;
  38.       }
  39.  
  40.       th {
  41.         background: #f5f5f5;
  42.         padding: 8px;
  43.         font-size: 16px;
  44.         font-weight: 500;
  45.         text-align: left;
  46.       }
  47.  
  48.       tr {
  49.         border-bottom: 1px solid #efefef;
  50.       }
  51.  
  52.       .report-th {
  53.         padding-left: 12px;
  54.       }
  55.  
  56.       td {
  57.         padding: 8px;
  58.         font-size: 14px;
  59.       }
  60.  
  61.       .report-img {
  62.         width: 75px;
  63.         height: 75px;
  64.       }
  65.     </style>
  66.   </head>
  67.   <body>
  68.     <main>
  69.       <!-- header part -->
  70.       <div class="report-head">
  71.         <p class="report-head-p">
  72.           Klassy product stock out report 07 July 2024
  73.         </p>
  74.  
  75.         <p class="report-div-p">www.klassy.com.bd</p>
  76.       </div>
  77.  
  78.       <!-- Report Table -->
  79.       <table>
  80.         <thead>
  81.           <tr>
  82.             <th class="report-th">#</th>
  83.             <th>Item Image</th>
  84.             <th>Item Name</th>
  85.             <th>SKU</th>
  86.             <th>Quantity Need</th>
  87.           </tr>
  88.         </thead>
  89.         <tbody>
  90.           <!-- Sample Row -->
  91.           <tr>
  92.             <td class="report-th">1.</td>
  93.             <td>
  94.               <img
  95.                class="report-img"
  96.                src="https://klassy.com.bd/_next/image?url=https%3A%2F%2Fcdn.klassy.com.bd%2Fuploads%2Fproducts%2Fproducts%2FJ0f2qiuvJQiPrujGCedp5y8aLuSpeaNLfyeFWS7O.png&w=640&q=75"
  97.                alt="product image"
  98.              />
  99.             </td>
  100.             <td>Aqualogica Hydrate+Dewy SPF 50+ Sunscreen 50g</td>
  101.             <td>8906087777090</td>
  102.             <td>11</td>
  103.           </tr>
  104.  
  105.           <tr>
  106.             <td class="report-th">2.</td>
  107.             <td>
  108.               <img
  109.                class="report-img"
  110.                src="https://klassy.com.bd/_next/image?url=https%3A%2F%2Fcdn.klassy.com.bd%2Fuploads%2Fproducts%2Fproducts%2FJ0f2qiuvJQiPrujGCedp5y8aLuSpeaNLfyeFWS7O.png&w=640&q=75"
  111.                alt="product image"
  112.              />
  113.             </td>
  114.             <td>Aqualogica Hydrate+Dewy SPF 50+ Sunscreen 50g</td>
  115.             <td>8906087777090</td>
  116.             <td>11</td>
  117.           </tr>
  118.         </tbody>
  119.       </table>
  120.     </main>
  121.   </body>
  122. </html>
  123.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement