-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (50 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css"
integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Weight Converter</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3">
<h1 class="display-4 mb-3 text-center">Weight Converter</h1>
<form>
<div class="form-group">
<input id="kgInput" type="number" class="form-control form-control-lg"
placeholder="Enter KiloGrams">
</div>
</form>
<div id="output">
<div class="card bg-primary mb-2">
<div class="card-block">
<h4>Grams :</h4>
<div id="gramsOutput">
</div>
</div>
</div>
<div class="card bg-success mb-2">
<div class="card-block">
<h4>Pounds :</h4>
<div id="lbsOutput">
</div>
</div>
</div>
<div class="card bg-danger mb-2">
<div class="card-block">
<h4>Ounces :</h4>
<div id="ozOutput">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="converter.js"></script>
</body>
</html>