Advertisement
sourav8256

Untitled

Jul 30th, 2023
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Product Details</title>
  5. <!-- Add the Bootstrap CSS link -->
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
  7. </head>
  8. <body>
  9. <header>
  10. <!-- Navbar code remains the same -->
  11. </header>
  12.  
  13. <div class="container mt-4">
  14. <div class="row">
  15. <div class="col-md-6">
  16. <img src="product1.jpg" alt="Product 1" class="img-fluid">
  17. </div>
  18. <div class="col-md-6">
  19. <h2>Product 1</h2>
  20. <p><strong>Price:</strong> $100</p>
  21. <p><strong>Category:</strong> Category 1</p>
  22. <h4>Description</h4>
  23. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed dapibus tristique nibh, vel posuere ipsum
  24. vulputate et. Quisque quis leo nec massa tincidunt malesuada nec vel elit.</p>
  25. <button class="btn btn-primary">Add to Cart</button>
  26. </div>
  27. </div>
  28. </div>
  29.  
  30. <!-- Add the Bootstrap JS and jQuery links -->
  31. <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
  32. <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.6.0/dist/umd/popper.min.js"></script>
  33. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
  34. </body>
  35. </html>
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement