-
Notifications
You must be signed in to change notification settings - Fork 0
/
algebra.html
121 lines (107 loc) · 3.33 KB
/
algebra.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Algebra</title>
<style>
@font-face {
font-family: "handwritten";
src: url(./fonts/nexa-rust/NexaRustSlab-BlackShadow01.otf);
}
.calc {
text-decoration: none;
font-family: "handwritten", sans-serif;
color: #000000;
padding: 10px;
display: flex;
justify-content: space-around;
box-shadow: rgb(0, 0, 0) 1px 1px 20px;
background: linear-gradient(to right, #FFB84C, #FF6D28);
border-radius: 4%;
}
a:hover {
color: black;
background-color: yellow;
border-radius: 10px;
border: 5px solid black;
transition-property: all;
transition-duration: 150ms;
}
a:hover+.p1 {
display: block;
}
.flex-container {
margin-top: 100px;
display: flex;
justify-content: space-around;
}
.flex-container>div {
width: 300px;
margin: 10px;
text-align: center;
line-height: 75px;
font-size: 30px;
border-radius: 20px;
}
body {
background-image: url(https://www.allinonecalculator.com/images/home/background.jpg);
}
.p1 {
padding: 6%;
text-align: left;
font-size: 1.3rem;
line-height: 170%;
display: none;
box-shadow: rgb(255, 149, 0) 0 1px 20px;
border-radius: 4%;
background: linear-gradient(210deg, #000000, #4a4646);
color: white;
}
@media (max-width: 600px) {
.flex-container {
flex-direction: column;
align-items: center;
}
.flex-container>div {
width: 80%;
}
.p1 {
padding: 8%;
font-size: 1rem;
}
}
</style>
</head>
<body>
<div class="flex-container">
<div>
<a class="calc" href="scientific.html" target="_blank" rel="noopener noreferrer">SCIENTIFIC CALCULATOR<div></div>
</a>
<p class="p1">
A scientific calculator is an electronic calculator, either desktop or handheld, designed to perform
mathematical operations. They have completely replaced slide rules and are used in both educational and professional
settings.
</p>
</div>
<div>
<a class="calc" href="binary.html" target="_blank" rel="noopener noreferrer">BINARY CALCULATOR
</a>
<p class="p1">
A binary number is a number expressed in the base-2 numeral system or binary numeral system, a method of mathematical
expression which uses only two symbols: typically "0" and "1". The base-2 numeral system is a positional notation with a
radix of 2. Each digit is referred to as a bit, or binary digit.
</p>
</div>
<div>
<a class="calc" href="calculator.html" target="_blank" rel="noopener noreferrer">ARITHMETIC CALCULATOR
</a>
<p class="p1">
Arithmetic is an elementary part of mathematics that consists of the study of the properties of the traditional
operations on numbers addition, subtraction, multiplication, division, exponentiation, and extraction of roots.
</p>
</div>
</div>
</body>
</html>