Note: Delete this note and update the table of contents based on what sections you keep.
- Solution URL: Solution URL
- Live Site URL: Live URL
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- Mobile-first workflow -js
Note: These are just examples. Delete this note and replace the list above with your own choices
function handleToggler(){
if(toggler_index===1){
toggler_disk.classList.toggle('toggler-disk-2');
root.classList.toggle('root-white-theme');
toggler_index++;
}
else if(toggler_index===2){
toggler_disk.classList.toggle('toggler-disk-3');
root.classList.toggle('root-purple-theme')
toggler_index++;
}
else{
toggler_disk.classList.remove('toggler-disk-2');
root.classList.remove('root-white-theme');
toggler_disk.classList.remove('toggler-disk-3');
root.classList.remove('root-purple-theme')
toggler_index=1;
}
}algorithm and effiecient program writing
- Website - Add your name here
- Frontend Mentor - @Kumneger