Posts

Showing posts from June, 2020

How to make back to top button (EASIEST WAY)

Note: make sure you have imported awesome font Put this in your HTML <a href="#" id="scroll-to-top"><i class="fa fa-angle-up"></i></a> Put these in your HTML html {   scroll-behavior: smooth; } #scroll-to-top{ position:fixed; bottom:5%;   padding:20px; background:var(--primary-color); content:"Top"; color:white; right:20px; box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3); border-radius:50%; height:50px; width:50px; -webkit-transition: 0.2s;   transition: 0.2s; } #scroll-to-top i{ top:-5px; position:relative; } #scroll-to-top:active {   -webkit-transform: scale(0.9);           transform: scale(0.9);   box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.3); }

Promotional Strategies

Image
  1.        How does the company create awareness of its product? End of financial year sales Massive size on-sales sign in everywhere Have all kinds electronic gadgets 2.        How does the company get consumers to try its product? Most of the product unpacked, so customer are able to touch all products Allow customer refund product after they purchase the product but don’t like it Instruction signs everywhere 3.        How does the company give information about the product to its customer? Booklet Play demo video on the device Staff demonstrates the product to customers 4.        How does the company retain loyal customers? Loyalty card Gift card Subscription letter 5.        How does the company entice the customer to buy more and use their product frequently? Update w...

Agile vs Waterfall

What is Agile Agile methodology is a technique which assists in the continuous development and testing of software development processes. Unlike the Waterfall model, development and research activities in this model are simultaneous. This process allows for more communication among clients, developers , managers and testers. This methodology is kind of new to most of the traditional company, this method is popular in software development company. The reason for that is because client usually find that hard to describe what they really need when creating something new to the market, they need to be able to test the concept and the idea. If the product isn’t able to have a smaller version, or be delivered in a separated stage, it takes too much time on testing something is unce...