forked from dev-mendez/weekly-Project-Calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (60 loc) · 1.83 KB
/
index.html
File metadata and controls
70 lines (60 loc) · 1.83 KB
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
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="Sheet.css" />
<script defer src="app.js"></script>
<title>Calculator</title>
</head>
<body>
<div id="container">
<div id="screenContainer">
<form action="" id="form">
<input type="text" name="input1" id="inputScreen" value='asd'/>
</form>
</div>
<div id="selectList">
<select id="mySelect">
<option>.0</option>
<option>.00</option>
<option>.000</option>
<option>.0000</option>
</select>
</div>
<div id="tableKeys">
<table id="tableK">
<tr>
<td><a href="" class="digit">9</a></td>
<td><a href="" class="digit">8</a></td>
<td><a href="" class="digit">7</a></td>
<td><a href="" class="operator">/</a></td>
</tr>
<tr>
<td><a href="" class="digit">6</a></td>
<td><a href="" class="digit">5</a></td>
<td><a href="" class="digit">4</a></td>
<td><a href="" class="operator">*</a></td>
</tr>
<tr>
<td><a href="" class="digit">3</a></td>
<td><a href="" class="digit">2</a></td>
<td><a href="" class="digit">1</a></td>
<td><a href="" class="operator">-</a></td>
</tr>
<tr>
<td><a href="" class="digit">0</a></td>
<td><a href="" class="operator">.</a></td>
<td><a href="" class="operator">=</a></td>
<td><a href="" class="operator">+</a></td>
</tr>
<tr>
<td colspan="4"> <img src="eraser.jpg" id="imag" alt=" "></td>
</tr>
</table>
</div>
</div>
<div id="myDiv"></div>
</body>
</html>