A simple Google Sheets clone built using vanilla JavaScript, HTML, and CSS. This project replicates basic spreadsheet functionalities like editing cells, applying formulas, and handling data.
- Create and edit cells dynamically
- Apply basic formulas (e.g., sum, average)
- Save and load spreadsheet data locally using browser storage
- Responsive and intuitive UI for spreadsheet interactions
- HTML5
- CSS3
- Vanilla JavaScript (no frameworks)
- Click on a cell to edit its value.
- Press
Enter
to save the value. - Use basic formulas like
=SUM(A1:A5)
for calculations.
- Add more advanced formulas and functions.
- Implement real-time collaboration features.
- Add export/import functionality for CSV or Excel files.