-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (26 loc) · 1.03 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculator_JS</title>
<!--DmytroP calculator_js -->
<script type="text/javascript" src="./calc_1.js"></script>
</head>
<body>
<form>
<input autofocus id="number1" placeholder="write the first number" type="number" />
<select>
<option value="+">+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
<input autofocus id="number2" placeholder="write the second number" type="number" />
<input class="button" id="calc" type="button" value="=" onclick="calculate()">
<input id="result" placeholder="result" type="add" style="text-align-last: right;" disabled>
<input class="button" id="clear" type="button" value="Clear" onclick="clearInput()">
</form>
</body>
</html>