Current Job Openings

Assistant manager

<!DOCTYPE html>

<html lang="en">

<head>

   <meta charset="UTF-8">

   <meta name="viewport" content="width=device-width, initial-scale=1.0">

   <title>Read More Example</title>

   <style>

       /* Hide the additional information initially */

       #additional-info {

           display: none;

       }

   </style>

</head>

<body>

   <h1>Product Details</h1>

   <p>This is a brief description of the product.</p>

   

   <!-- Button to toggle the additional information -->

   <button id="read-more-button">Read More</button>

   

   <!-- Additional information (hidden by default) -->

   <div id="additional-info">

       <h2>Additional Information</h2>

       <p>This is the additional information about the product that is hidden by default. You can read more about it here.</p>

   </div>

   

   <script>

       // JavaScript to toggle the additional information

       const button = document.getElementById('read-more-button');

       const additionalInfo = document.getElementById('additional-info');

       

       button.addEventListener('click', function() {

           if (additionalInfo.style.display === 'none') {

               additionalInfo.style.display = 'block';

               button.textContent = 'Read Less';

           } else {

               additionalInfo.style.display = 'none';

               button.textContent = 'Read More';

           }

       });

   </script>

</body>

</html>


we are hiring assistant managers