-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 957 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
<style type="text/css">
td{
width:50px;
height:50px;
border:2px solid black;
text-align:center;
font-weight:900;
}
</style>
</head>
<body>
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
<td>9</td>
</tr>
<tr>
<td>+</td>
<td>-</td>
<td>*</td>
<td>/</td>
</tr>
</table>
<div id="submit"style="width:50px;height:50px;border:2px solid black;text-align:center">
Result here
</div>
<table>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
</table>
<div id="submit" style="width:150px; height:50px; border:2px; text-align:center">=</div>
<script type="type="text/javascript">
var resultDiv=document.getElementId("submit")
console.log(resultDiv)
resultDiv.innerHTML="Hello Baby"
</script>
</body>
</html>