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="styles/items.css">
- <title>Baby Doll</title>
- </head>
- <body>
- <header>
- <h3>Item
- Details:</h3>
- </header>
- <div id="flexin_details">
- <div id="image_container">
- <img src="/images/618-6181743_baby-doll-hd-png-download.png" alt="Baby doll">
- <img src="/images/96-967751_download-bebellino-doll-large-doll-baby-doll-transparent.png" alt="bbydll">
- <img src="/images/baby-doll-115497016567uov8fwmc6.png" alt="">
- <div class="scroll-buttons">
- <button onclick="scrollItems('left')">Left</button>
- <button onclick="scrollItems('right')">Right</button>
- </div>
- </div>
- <div id="Details">
- <p>Name: Baby Doll</p>
- <p><b>About this item</b></p>
- <ul>
- <li>Toyshine Jinny Doll is the perfect petite baby doll for
- little ones to hold, play with and love!
- This cute mini baby is 6” head to toe with a soft and cuddly body
- and fresh baby powder scented vinyl.
- </li>
- <li>
- <b>DETAILED FEAUTURES –</b>
- Face made of gentle touch vinyl, making it
- look realistic with lifelike features. She has a beautiful printed face with wide eyes,
- sweet smile and detailed natural expressions.
- </li>
- <li>
- <b>EFFECTIVE CHILD DEVELOPMENT –</b>
- Provides superior
- alternative for pretend play. Helps develop imagination;
- teach your little one how to interact and engage with babies properly.
- </li>
- <li>
- Toyshine Jinny Doll is the perfect petite baby doll for little ones to hold,
- play with and love! This cute mini baby is 6” head to toe with a soft and
- cuddly body and fresh baby powder scented vinyl.
- </li>
- <li>
- <b> Date First Available: </b>13 September 2016
- </li>
- <li>
- <b> Manufacture: </b>Sunshine Gifting
- </li>
- <li>
- <b>Item Dimensions (LxWxH): </b>15 x 15.1 x 20.3 Centimeters
- </li>
- <li>
- <b>Generic Name</b>: Doll Toy
- </li>
- </ul>
- </div>
- </div>
- <div id="buttons">
- <button onclick="redirectToCheckout('babydoll', 20000)">
- Checkout
- </button>
- <button onclick="redirectToHomepage()">
- Return
- </button>
- </div>
- <script>
- function redirectToCheckout(item, price) {
- var checkoutUrl = 'buy_item.php?item=' + item + "&price=" + price;
- window.location.href = checkoutUrl;
- }
- function redirectToHomepage() {
- var checkoutUrl = 'index.html';
- window.location.href = checkoutUrl;
- }
- function scrollItems(direction) {
- const itemList = document.getElementById('image_container');
- if (direction === 'left') {
- itemList.scrollLeft -= 200;
- } else if (direction === 'right') {
- itemList.scrollLeft += 200;
- }
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement