Advertisement
mishe

Customers-page-sap

May 3rd, 2025
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.71 KB | None | 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.     <link rel="stylesheet" href="customers.css"/>
  7.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
  8.     <title>Customers</title>
  9. </head>
  10. <body>
  11.  
  12. <header class="main-header">
  13.    
  14.     <div class="header-left">
  15.         <img src="home.jpg" alt="Logo" />
  16.     </div>
  17.     <div class="header-content">
  18.         <h1 class="welcome-title">Welcome to Our Page!</h1>
  19.         <h2 class="welcome-text">It’s time to power up your <br>day with flavor and focus. Grab your coffee (or pizza?) and let’s get things rolling.</h2>
  20.         <br>
  21.         <br>
  22.         <br>
  23.         <br>
  24.         <br>
  25.         <nav class="header-nav">
  26.             <a href="#" class="nav-button"><i class="fas fa-home"></i> Home</a>
  27.             <a href="#" class="nav-button"><i class="fas fa-shopping-basket"></i> Basket</a>
  28.             <a href="#" class="nav-button"><i class="fas fa-chart-bar"></i> Statistics</a>
  29.             <a href="#" class="nav-button"><i class="fas fa-receipt"></i> Orders</a>
  30.             <a href="#" class="nav-button"><i class="fas fa-user"></i> Profile</a>
  31.         </nav>
  32.     </div>
  33.  
  34. </header>
  35.  
  36. <main>
  37. <table>
  38.     <thead>
  39.     <tr>
  40.         <th>Customer Name</th>
  41.         <th>Action</th>
  42.     </tr>
  43.     </thead>
  44.     <tbody>
  45.     <tr>
  46.         <td>Ivan Ivanov</td>
  47.         <td>
  48.             <form action="" method="POST">
  49.                 <button type="submit" class="promote-btn">Promote to Courier</button>
  50.             </form>
  51.         </td>
  52.     </tr>
  53.     </tbody>
  54. </table>
  55. </main>
  56.  
  57. </body>
  58.  
  59.  
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement