-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (24 loc) · 868 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Penjumlahan</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>Penjumlahan</h2>
<label for="bil1">Bilangan pertama</label>
<input type="number" id="bil1" placeholder="Masukkan bilangan pertama">
<label for="bil2">Bilangan kedua</label>
<input type="number" id="bil2" placeholder="Masukkan bilangan kedua">
<div class="button-container">
<button onclick="hitung()">Jumlahkan</button>
<button onclick="reset()">Reset</button>
</div>
<h3>Hasil: <span id="hasil">0</span></h3>
</div>
<script src="script.js"></script>
</body>
</html>