-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
60 lines (55 loc) · 2.62 KB
/
1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Final by Vahitcan Tutar</title>
<link rel="stylesheet" href="css/1.css">
</head>
<body>
<nav>
<ul class="nav-links">
<li class="navbar-brand">
<h3>Vahit Can Tutar</h3>
</li>
<li><a href="index.html">Simple</a></li>
<li><a href="programmer.html">Programmer</a></li>
<li><a href="scientific.html">Scientific</a></li>
<li><input type="button" class="but-gündüz" value="Dark mode" onclick="gece()">
</li>
</ul>
</nav>
<div class="hesap">
<form class="calculator" name="calc">
<div class="previous-operand"></div>
<div class="current-operand"></div>
<input type="text" class="value" name="txt" readonly>
<span class="num fil" onclick="document.calc.txt.value =''">c</span>
<span class="num fil" onclick="document.calc.txt.value +=''">+/-</span>
<span class="num" onclick="document.calc.txt.value +='%'">%</span>
<span class="num turuncu" onclick="document.calc.txt.value +='/'">÷</span>
<span class="num" onclick="document.calc.txt.value +='7'">7</span>
<span class="num" onclick="document.calc.txt.value +='8'">8</span>
<span class="num" onclick="document.calc.txt.value +='9'">9</span>
<span class="num turuncu" onclick="document.calc.txt.value +='*'">x</span>
<span class="num" onclick="document.calc.txt.value +='4'">4</span>
<span class="num" onclick="document.calc.txt.value +='5'">5</span>
<span class="num" onclick="document.calc.txt.value +='6'">6</span>
<span class="num turuncu" onclick="document.calc.txt.value +='-'">-</span>
<span class="num" onclick="document.calc.txt.value +='1'">1</span>
<span class="num" onclick="document.calc.txt.value +='2'">2</span>
<span class="num" onclick="document.calc.txt.value +='3'">3</span>
<span class="num turuncu" onclick="document.calc.txt.value +='+'">+</span>
<span class="num sıfır" onclick="document.calc.txt.value +='0'">0</span>
<span class="num" onclick="document.calc.txt.value +='.'">.</span>
<span class="num turuncu" onclick="document.calc.txt.value +='='">=</span>
</form>
</div>
<script>
var element = document.body;
function gece() {
element.classList.toggle("dark");
}
</script>
</body>
</html>