"Untitled"
Bootstrap 4.1.1 Snippet by danielfino

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Auction Page</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" /> </head> <body> <div class="container my-5"> <div class="row"> <div class="col-md-6"> <img class="img-fluid" src="https://images.unsplash.com/photo-1628210889224-53b2e3082fc7?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8YWlycG9kcyUyMHByb3xlbnwwfHwwfHw%3D&w=1000&q=80" alt="Product Image"> </div> <div class="col-md-6"> <h2 class="my-3">Airpods Pro</h2> <p>AirPods Pro earbuds feature up to 2x more Active Noise Cancellation, plus Adaptive Transparency, and Personalized Spatial Audio with dynamic head tracking for immersive sound.</p> <p class="text-muted my-3">Current highest bid: $500</p> <p class="text-muted my-3">Time left: 1 day 3 hours 22 minutes</p> <form> <div class="form-group"> <label for="bid-value">Your Bid</label> <div class="input-group"> <input type="text" class="form-control" id="bid-value"> <div class="input-group-append"> <button class="btn btn-outline-secondary" type="submit">Place Bid</button> </div> </div> </div> </form> </div> </div> <hr> <div class="row"> <div class="col-md-12"> <h3>Bid History</h3> <table class="table table-striped"> <thead> <tr> <th>Bid Value</th> <th>User</th> <th>Time</th> </tr> </thead> <tbody> <tr> <td>$400</td> <td>User 1</td> <td>3 hours ago</td> </tr> <tr> <td>$300</td> <td>User 2</td> <td>12 hours ago</td> </tr> <tr> <td>$200</td> <td>User 3</td> <td>2 days ago</td> </tr> <tr> <td>$100</td> <td>User 4</td> <td>4 days ago</td> </tr> </tbody> </table> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> </body> </html>

Related: See More


Questions / Comments: