-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
38 lines (38 loc) · 972 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="utf-8">
<title>آلة حاسبة</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="calculator">
<div id="output-container">
<input readonly>
<button id="reset">AC</button>
</div>
<div id="numbers">
<button id="zero">0</button>
<button>1</button>
<button>2</button>
<button>3</button>
<button>4</button>
<button>5</button>
<button>6</button>
<button>7</button>
<button>8</button>
<button>9</button>
<button id="dot">.</button>
<button id="calculate">=</button>
</div>
<div id="operators">
<button>+</button>
<button>-</button>
<button>×</button>
<button>÷</button>
</div>
</div>
<script src="jquery-3.0.0.js"></script>
<script src="script.js"></script>
</body>
</html>