-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexcercise2.html
28 lines (25 loc) · 971 Bytes
/
excercise2.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
<!DOCTYPE html>
<html>
<head>
<title>Kalkulator sederhana dengan javascript</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="kalkulator">
<h2 class="judul">Kalkulator sederhana dengan javascript</h2>
<form>
<input type="number" id="bil1" name="bil1" class="bil" placeholder="Masukkan Bilangan Pertama">
<input type="number" id="bil2" name="bil2" class="bil" placeholder="Masukkan Bilangan Kedua">
<select class="opt" id="operasi" name="operasi">
<option value="tambah">+</option>
<option value="kurang">-</option>
<option value="kali">x</option>
<option value="bagi">/</option>
</select>
<button type="submit" name="hitung" value="Hitung" class="tombol" onclick="Hitung()">Hitung</button>
</form>
<input type="text" id="hasil" name="hasil" value="" class="bil">
</div>
</body>
<script type="text/javascript" src="05.js"></script>
</html>