Advertisement
Daniel3996

babydoll.html

Dec 11th, 2023
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 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="styles/items.css">
  7. <title>Baby Doll</title>
  8. </head>
  9. <body>
  10. <header>
  11. <h3>Item
  12. Details:</h3>
  13. </header>
  14.  
  15. <div id="flexin_details">
  16. <div id="image_container">
  17. <img src="/images/618-6181743_baby-doll-hd-png-download.png" alt="Baby doll">
  18. <img src="/images/96-967751_download-bebellino-doll-large-doll-baby-doll-transparent.png" alt="bbydll">
  19. <img src="/images/baby-doll-115497016567uov8fwmc6.png" alt="">
  20. <div class="scroll-buttons">
  21. <button onclick="scrollItems('left')">Left</button>
  22. <button onclick="scrollItems('right')">Right</button>
  23. </div>
  24. </div>
  25.  
  26. <div id="Details">
  27. <p>Name: Baby Doll</p>
  28. <p><b>About this item</b></p>
  29. <ul>
  30. <li>Toyshine Jinny Doll is the perfect petite baby doll for
  31. little ones to hold, play with and love!
  32. This cute mini baby is 6” head to toe with a soft and cuddly body
  33. and fresh baby powder scented vinyl.
  34. </li>
  35. <li>
  36. <b>DETAILED FEAUTURES –</b>
  37. Face made of gentle touch vinyl, making it
  38. look realistic with lifelike features. She has a beautiful printed face with wide eyes,
  39. sweet smile and detailed natural expressions.
  40. </li>
  41. <li>
  42. <b>EFFECTIVE CHILD DEVELOPMENT –</b>
  43. Provides superior
  44. alternative for pretend play. Helps develop imagination;
  45. teach your little one how to interact and engage with babies properly.
  46. </li>
  47. <li>
  48. Toyshine Jinny Doll is the perfect petite baby doll for little ones to hold,
  49. play with and love! This cute mini baby is 6” head to toe with a soft and
  50. cuddly body and fresh baby powder scented vinyl.
  51. </li>
  52. <li>
  53. <b> Date First Available: </b>13 September 2016
  54. </li>
  55. <li>
  56. <b> Manufacture: </b>Sunshine Gifting
  57. </li>
  58. <li>
  59. <b>Item Dimensions (LxWxH): </b>15 x 15.1 x 20.3 Centimeters
  60. </li>
  61. <li>
  62. <b>Generic Name</b>: Doll Toy
  63. </li>
  64. </ul>
  65. </div>
  66. </div>
  67. <div id="buttons">
  68. <button onclick="redirectToCheckout('babydoll', 20000)">
  69. Checkout
  70. </button>
  71. <button onclick="redirectToHomepage()">
  72. Return
  73. </button>
  74. </div>
  75. <script>
  76. function redirectToCheckout(item, price) {
  77. var checkoutUrl = 'buy_item.php?item=' + item + "&price=" + price;
  78. window.location.href = checkoutUrl;
  79. }
  80. function redirectToHomepage() {
  81. var checkoutUrl = 'index.html';
  82. window.location.href = checkoutUrl;
  83. }
  84. function scrollItems(direction) {
  85. const itemList = document.getElementById('image_container');
  86. if (direction === 'left') {
  87. itemList.scrollLeft -= 200;
  88. } else if (direction === 'right') {
  89. itemList.scrollLeft += 200;
  90. }
  91. }
  92. </script>
  93. </body>
  94. </html>
  95.  
  96.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement