-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (59 loc) · 1.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>ScriptEd Hackathon SF BAY</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Spectral:300,300i" rel="stylesheet">
<!-- Your CSS Linked Below-->
<link rel="stylesheet" href="/styles.css">
<!-- jQuery Linked Below-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Your Javascript Linked Below-->
<script src="/script.js" defer></script>
</head>
<body>
<h1>Social Injustice Calculator</h1>
<h2>by Amanda, Jesse, Karen, and Jeslyn</h2>
<div id="overall">
<div id="display">
<p style="margin-bottom:5px; margin-top:-2px;">
<div id="top">
<span id="equation"> </span>
<span id="placeholder">0</span>
</div>
</p>
<div id="result">
<em></em>
</div>
</div>
<div id="buttons">
<div class="row">
<button id="seven">7</button>
<button id="eight">8</button>
<button id="nine">9</button>
</div>
<div class="row">
<button id="four">4</button>
<button id="five">5</button>
<button id="six">6</button>
</div>
<div class="row">
<button id="one">1</button>
<button id="two">2</button>
<button id="three">3</button>
</div>
<div class="row">
<button id="zero">0</button>
<button id="plus">+</button>
<button id="clear">AC</button>
</div>
<div class="row">
<button id="equal">=</button>
</div>
</div>
</div>
</body>
</html>