-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (89 loc) · 3.24 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<title>Mathmaster</title>
<link rel="icon" type="image/png" href="./images/index.ico" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Black+Ops+One|Orbitron|Bowlby+One+SC" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous" />
<link type="text/css" rel="stylesheet" href="calc-style.css" />
</head>
<body>
<nav class="row">
<div class="header col-xs-12" style=>
<a href="https://www.spazcool.com/" id="home-button">
<div class="" type="button" id="home">home</div>
</a>
</div>
</nav>
<main class="container-fluid">
<div class="row justify-content-md-center"">
<div class="workspace">
<div class="row justify-content-md-center">
<div class="title col-xs-12">MATHMASTER</div>
</div>
<!--SCREEN-->
<div class="screenHold">
<div class="col-xs-12" id="screen">
</div>
</div>
<!--BUTTONS-->
<div class="calculator col-xs-12">
<div class="col-lg-12">
<div class="acce">
<center>
<button class="power well buts" id="ac">AC</button>
<button class="power well buts" id="ce">CE</button>
</center>
</div>
<div class="sevenEightNineTimes">
<center>
<button class="buts" id="7">7</button>
<button class="buts" id="8">8</button>
<button class="buts" id="9">9</button>
<button class="ops buts" id="*">x</button>
</center>
</div>
<div class="fourFiveSixDivide">
<center>
<button class="buts" id="4">4</button>
<button class="buts" id="5">5</button>
<button class="buts" id="6">6</button>
<button class="ops buts" id="/">÷</button>
</center>
</div>
<div class="oneTwoThreePlus">
<center>
<button class="buts" id="1">1</button>
<button class="buts" id="2">2</button>
<button class="buts" id="3">3</button>
<button class="ops buts" id="+">+</button>
</center>
</div>
<div class="dotZeroEqualMinus">
<center>
<button class="buts" id=".">.</button>
<button class="buts" id="0">0</button>
<button class="power buts" id="equal">=</button>
<button class="ops buts" id="-">-</button>
</center>
</div>
</div>
<!--END OF BUTTONS-->
</div>
<!--END OF CALCULATOR-->
<div class="foot col-xs-10">
<center>
Created by me, <a href="https://github.com/Spazcool/" target="blank">Doug</a>.
</center>
</div>
</div>
</div>
</main>
<!--END OF WORKSPACE-->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script type="text/javascript" src="simpleCalc.js"></script>
</body>
</html>