Click here to add your first activity!
39 types to choose from
Worksheet Creator
Activity Settings
↩ Undo
↪ Redo
⚙️ Style
🔍
70%
🔑 Key
💾 Save
🔄 Switch to
📂 Load
🖨️ Print
📋 HEADER
Title
Student Info
✏️
Public
Section Labels
A, B, C...
1, 2, 3...
📝 INSTRUCTIONS
🧩 ACTIVITIES
+ Add Activity
🎮 Play as Game
📄 Export PDF
Your worksheet is empty. Add activities to get started.
Add Activity
✕
Cancel
// Keyboard shortcuts document.addEventListener("keydown",function(e){ if(e.target.tagName==="INPUT"||e.target.tagName==="TEXTAREA"||e.target.isContentEditable)return; if(e.ctrlKey||e.metaKey){ if(e.key==="s"){e.preventDefault();saveWS();typeof toast==="function"?toast("Saved"):null;} else if(e.key==="z"){e.preventDefault();if(typeof undo==="function")undo();} else if(e.key==="p"){e.preventDefault();window.print();} else if(e.key==="b"){e.preventDefault();st.ansKey=!st.ansKey;renderAll(); // First visit onboarding if(!localStorage.getItem("sop_onboarded")){setTimeout(function(){var t=document.getElementById("onboardTip");if(t)t.style.display="block";},800);localStorage.setItem("sop_onboarded","1");}} } });