Here's a simple HTML structure for a basic calculator: ```html Simple Calculator
``` This HTML file sets up a basic calculator layout with buttons for numbers, operators, a decimal point, an all-clear button, and an equal sign for calculating the result. The calculator screen is represented as a disabled input field. The JavaScript logic for handling button clicks and performing calculations will be added in the `script.js` file.