-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (61 loc) · 3.98 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
<!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>./FForFachriza | Konverter Panjang</title>
<link rel="icon" type="image/x-icon" href="https://FForFachriza.github.io/img/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style/styles.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
</head>
<body class="container-sm">
<div class="justify-content-center">
<div class="card">
<div style="font-size: larger" class="card-body text-center fw-bold">Konverter Panjang</div>
<div class="container-sm">
<div class="form-outline input-group">
<input type="number" id="Km" placeholder="Masukkan Angka Dalam Kilometer" class="form-control" />
<span class="input-group-text justify-content-center" style="width: 54px">Km</span>
</div>
<div class="form-outline input-group pt-3">
<input type="number" id="Hm" placeholder="Masukkan Angka Dalam Hektometer" class="form-control" />
<span class="input-group-text justify-content-center" style="width: 54px">Hm</span>
</div>
<div class="form-outline input-group pt-3">
<input type="number" id="Dam" placeholder="Masukkan Angka Dalam Dekameter" class="form-control" />
<span class="input-group-text justify-content-center" style="width: 54px">Dam</span>
</div>
<div class="form-outline input-group pt-3">
<input type="number" id="M" placeholder="Masukkan Angka Dalam Meter" class="form-control" />
<span class="input-group-text justify-content-center" style="width: 54px">M</span>
</div>
<div class="form-outline input-group pt-3">
<input type="number" id="Dm" placeholder="Masukkan Angka Dalam Desimeter" class="form-control" />
<span class="input-group-text justify-content-center" style="width: 54px">Dm</span>
</div>
<div class="form-outline input-group pt-3">
<input type="number" id="Cm" placeholder="Masukkan Angka Dalam Centimeter" class="form-control" />
<span class="input-group-text justify-content-center" style="width: 54px">Cm</span>
</div>
<div class="form-outline input-group pt-3 mb-3">
<input type="number" id="Mm" placeholder="Masukkan Angka Dalam Milimeter" class="form-control" />
<span class="input-group-text justify-content-center" style="width: 54px">Mm</span>
</div>
<div class="text-center mb-3">
<button id="buttonclear" type="button" class="btn btn-primary" data-bs-toggle="button" autocomplete="off">Clear Input</button>
<button id="buttonkonversi" type="button" class="btn btn-primary" data-bs-toggle="button" autocomplete="off">Konversi</button>
</div>
</div>
</div>
</div>
<!-- script -->
<script src="script.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
</body>
</html>