-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 1.36 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
<!DOCTYPE html>
<html>
<link href="style.css" type="text/css" rel="stylesheet">
<title>Calculator</title>
<body>
<div class="credits">
Check out my <a href="https://github.com/farazsth98">
github
</a>!<br/>
Also check out <a href="https://www.theodinproject.com">
TheOdinProject
</a>
</div>
<table id="container">
<tr id="trdisplay">
<td id="tcdisplay" colspan="5"></td>
</tr>
<tr class = "trow">
<td class="tcbutton" id="seven">7</td>
<td class="tcbutton" id="eight">8</td>
<td class="tcbutton" id="nine">9</td>
<td class="tcbutton" id="clear" colspan="2">Clear</td>
</tr>
<tr class = "trow">
<td class="tcbutton" id="four">4</td>
<td class="tcbutton" id="five">5</td>
<td class="tcbutton" id="six">6</td>
<td class="tcbutton" id="plus">+</td>
<td class="tcbutton" id="minus">-</td>
</tr>
<tr class = "trow">
<td class="tcbutton" id="one">1</td>
<td class="tcbutton" id="two">2</td>
<td class="tcbutton" id="three">3</td>
<td class="tcbutton" id="star">*</td>
<td class="tcbutton" id="slash">/</td>
</tr>
<tr class = "trow">
<td class="tcbutton" id="zero">0</td>
<td class="tcbutton" id="dot">.</td>
<td class="tcbutton" id="del">DEL</td>
<td class="tcbutton" id="equal" colspan="2">=</td>
</tr>
</div>
</body>
<script src="script.js"></script>
</html>