/E-Cart

An Ecommerce cart with pre-selected items

Primary LanguageHTML

E-Cart🍀

An Ecommerce cart with pre-selected items

LIVE SITE

----> https://cart-gilt.vercel.app

LANGUAGES USED

  • Html
  • CSS
  • Javascript

TOOS USED

  • Adobe XD
  • Visual Studio Code
  • Codepen
  • Git

ICONS USED

  • IconScout⭐
  • Friconix
  • Font Awesome
  • Google Fonts
  • Icons8
  • Flavicon

SOME CODE SNIPPETS

  //changing the color of the first item
  let heart = document.getElementById('heart');
  let index = 0;
  const colors = ['red', 'grey'];

  heart.addEventListener('click', function onClick() {
    heart.style.color = colors[index];
    index = index >= colors.length - 1 ? 0 : index + 1;
  });

ecart