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">
- <link rel="stylesheet" href="customers.css"/>
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
- <title>Customers</title>
- </head>
- <body>
- <header class="main-header">
- <div class="header-left">
- <img src="home.jpg" alt="Logo" />
- </div>
- <div class="header-content">
- <h1 class="welcome-title">Welcome to Our Page!</h1>
- <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>
- <br>
- <br>
- <br>
- <br>
- <br>
- <nav class="header-nav">
- <a href="#" class="nav-button"><i class="fas fa-home"></i> Home</a>
- <a href="#" class="nav-button"><i class="fas fa-shopping-basket"></i> Basket</a>
- <a href="#" class="nav-button"><i class="fas fa-chart-bar"></i> Statistics</a>
- <a href="#" class="nav-button"><i class="fas fa-receipt"></i> Orders</a>
- <a href="#" class="nav-button"><i class="fas fa-user"></i> Profile</a>
- </nav>
- </div>
- </header>
- <main>
- <table>
- <thead>
- <tr>
- <th>Customer Name</th>
- <th>Action</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>Ivan Ivanov</td>
- <td>
- <form action="" method="POST">
- <button type="submit" class="promote-btn">Promote to Courier</button>
- </form>
- </td>
- </tr>
- </tbody>
- </table>
- </main>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement