0% found this document useful (0 votes)
3 views2 pages

DOCTYPE HTML

The document is an HTML template for a simple calculator interface. It includes a display area and buttons for digits, operations, and functionalities like clear and calculate. The structure is defined with HTML elements, and it references external CSS and JavaScript files for styling and functionality.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views2 pages

DOCTYPE HTML

The document is an HTML template for a simple calculator interface. It includes a display area and buttons for digits, operations, and functionalities like clear and calculate. The structure is defined with HTML elements, and it references external CSS and JavaScript files for styling and functionality.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

<DOCTYPE html!

>

<"html lang="ar>

<head>

<"meta charset="UTF-8>

<"meta name="viewport" content="width=device-width, initial-scale=1.0>

<title/>‫<آﻟﺔ ﺣﺎﺳﺒﺔ ﺑﺴﻴﻄﺔ‬title>

<"link rel="stylesheet" href="styles.css>

<head/>

<body>

<"div class="calculator>

<input type="text" id="display" disabled>

<"div class="buttons>

<button onclick="clearDisplay()">C</button>

<button onclick="appendToDisplay('7')">7</button>

<button onclick="appendToDisplay('8')">8</button>

<button onclick="appendToDisplay('9')">9</button>

<button onclick="appendToDisplay('/')">/</button>

<button onclick="appendToDisplay('4')">4</button>

<button onclick="appendToDisplay('5')">5</button>

<button onclick="appendToDisplay('6')">6</button>

<button onclick="appendToDisplay('*')">*</button>

<button onclick="appendToDisplay('1')">1</button>

<button onclick="appendToDisplay('2')">2</button>

<button onclick="appendToDisplay('3')">3</button>

<button onclick="appendToDisplay('-')">-</button>

<button onclick="appendToDisplay('0')">0</button>

<button onclick="appendToDisplay('.')">.</button>
<button onclick="calculateResult()">=</button>

<button onclick="appendToDisplay('+')">+</button>

<div/>

<div/>

<script src="script.js"></script>

<body/>

<html/>

You might also like