-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (53 loc) · 2.11 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>java-calculator practic</title>
<link rel="stylesheet" href="calcu.css" />
</head>
<body>
<h1>Calculator in html,css and JavaScript</h1>
<div class="formstyle">
<form name="form1">
<input id="calc" type="text" name="answer" /> <br />
<br />
<input type="button" value="1" onclick="form1.answer.value += '1' " />
<input type="button" value="2" onclick="form1.answer.value += '2' " />
<input type="button" value="3" onclick="form1.answer.value += '3' " />
<input type="button" value="+" onclick="form1.answer.value += '+' " />
<br />
<br />
<input type="button" value="4" onclick="form1.answer.value += '4' " />
<input type="button" value="5" onclick="form1.answer.value += '5' " />
<input type="button" value="6" onclick="form1.answer.value += '6' " />
<input type="button" value="-" onclick="form1.answer.value += '-' " />
<br />
<br />
<input type="button" value="7" onclick="form1.answer.value += '7' " />
<input type="button" value="8" onclick="form1.answer.value += '8' " />
<input type="button" value="9" onclick="form1.answer.value += '9' " />
<input type="button" value="*" onclick="form1.answer.value += '*' " />
<br />
<br />
<input type="button" value="/" onclick="form1.answer.value += '/' " />
<input type="button" value="0" onclick="form1.answer.value += '0' " />
<input type="button" value="." onclick="form1.answer.value += '.' " />
<input
type="button"
value="="
onclick="form1.answer.value = eval(form1.answer.value) "
/>
<br />
<input
type="button"
value="Clear All"
onclick="form1.answer.value = ' ' "
id="clear"
/>
<br />
</form>
</div>
</body>
<script src="java.js"></script>
</html>