Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Klassy Parcel Report</title>
- <style>
- * {
- font-family: "Inter", sans-serif;
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- }
- main {
- padding: 18px;
- }
- .report-head {
- background: #f5f5f5;
- padding: 12px 18px;
- }
- .report-head-p {
- font-size: 16px;
- font-weight: 500;
- }
- .report-div-p {
- margin-top: 6px;
- font-size: 14px;
- }
- /* Table Styles */
- table {
- width: 100%;
- border-collapse: collapse;
- margin-top: 30px;
- }
- th {
- background: #f5f5f5;
- padding: 8px;
- font-size: 16px;
- font-weight: 500;
- text-align: left;
- }
- tr {
- border-bottom: 1px solid #efefef;
- }
- .report-th {
- padding-left: 12px;
- }
- td {
- padding: 8px;
- font-size: 14px;
- }
- .report-img {
- width: 75px;
- height: 75px;
- }
- </style>
- </head>
- <body>
- <main>
- <!-- header part -->
- <div class="report-head">
- <p class="report-head-p">
- Klassy product stock out report 07 July 2024
- </p>
- <p class="report-div-p">www.klassy.com.bd</p>
- </div>
- <!-- Report Table -->
- <table>
- <thead>
- <tr>
- <th class="report-th">#</th>
- <th>Item Image</th>
- <th>Item Name</th>
- <th>SKU</th>
- <th>Quantity Need</th>
- </tr>
- </thead>
- <tbody>
- <!-- Sample Row -->
- <tr>
- <td class="report-th">1.</td>
- <td>
- <img
- class="report-img"
- src="https://klassy.com.bd/_next/image?url=https%3A%2F%2Fcdn.klassy.com.bd%2Fuploads%2Fproducts%2Fproducts%2FJ0f2qiuvJQiPrujGCedp5y8aLuSpeaNLfyeFWS7O.png&w=640&q=75"
- alt="product image"
- />
- </td>
- <td>Aqualogica Hydrate+Dewy SPF 50+ Sunscreen 50g</td>
- <td>8906087777090</td>
- <td>11</td>
- </tr>
- <tr>
- <td class="report-th">2.</td>
- <td>
- <img
- class="report-img"
- src="https://klassy.com.bd/_next/image?url=https%3A%2F%2Fcdn.klassy.com.bd%2Fuploads%2Fproducts%2Fproducts%2FJ0f2qiuvJQiPrujGCedp5y8aLuSpeaNLfyeFWS7O.png&w=640&q=75"
- alt="product image"
- />
- </td>
- <td>Aqualogica Hydrate+Dewy SPF 50+ Sunscreen 50g</td>
- <td>8906087777090</td>
- <td>11</td>
- </tr>
- </tbody>
- </table>
- </main>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement