-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (87 loc) · 4.78 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Coulomb's Law Calculator</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport'
/>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons"
/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
<link href="css/material-kit.css?v=2.0.3" rel="stylesheet" />
<link href="css/bootstrap-select.min.css" rel="stylesheet" />
<link href="css/main.css" rel="stylesheet" />
<link href="css/animate.css" rel="stylesheet" />
</head>
<body class="index-page sidebar-collapse">
<nav class="navbar navbar-expand-lg animated fadeInDown" style="border-radius: 0; padding: 35px; box-shadow: none; background: transparent !important">
<h3 class="logo" style="margin: 10px; color: #fff; font-weight: bold; letter-spacing: 2px">Coulomb's Law Calculator</h3>
</nav>
<div class="container">
<div class="card card-nav-tabs mt-5 animated fadeInUp" style="width: 50%; margin-left: 25%">
<div class="card-body" style="height: 325px;">
<div id="inputs" class="row">
<div class="col-md-7">
<div class="form-group">
<label for="charge_one" class="bmd-label-floating">Charge 1</label>
<input type="number" class="form-control" id="charge_one">
</div>
</div>
<div class="col-md-5">
<div class="form-group" style="margin-top: 10px">
<select id="type_one" class="selectpicker" data-style="select-with-transition" title="Type 1">
<option value="0.001">Microcoulomb (mC)</option>
<option value="0.000001">Millicoulomb (uC)</option>
</select>
</div>
</div>
<div class="col-md-7">
<div class="form-group">
<label for="charge_two" class="bmd-label-floating">Charge 2</label>
<input type="number" class="form-control" id="charge_two">
</div>
</div>
<div class="col-md-5">
<div class="form-group" style="margin-top: 10px">
<select id="type_two" class="selectpicker" data-style="select-with-transition" title="Type 2">
<option value="0.001">Microcoulomb (mC)</option>
<option value="0.000001">Millicoulomb (uC)</option>
</select>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<label for="distance" class="bmd-label-floating">Distance (CM)</label>
<input type="number" class="form-control" id="distance">
</div>
</div>
<div class="col-md-12 text-right">
<button id="submit" class="btn btn-success float-right">See Result</button>
</div>
</div>
<div class="row" id="result">
<div class="result text-center">
<h4>Your Result:</h4>
<h3 style="font-size: 25px !important" id="answer"></h3>
<button id="back" class="btn btn-success">Back</button>
</div>
</div>
</div>
</div>
<div class="col-md-12 text-center">
<a href="secondpage.html" class="btn gradinet animated fadeInUpBig">Electric Field</a>
</div>
</div>
<!-- Core JS Files -->
<script src="js/core/jquery.min.js" type="text/javascript"></script>
<script src="js/core/popper.min.js" type="text/javascript"></script>
<script src="js/core/bootstrap-material-design.min.js" type="text/javascript"></script>
<script src="js/plugins/moment.min.js"></script>
<script src="js/plugins/bootstrap-datetimepicker.js" type="text/javascript"></script>
<script src="js/plugins/nouislider.min.js" type="text/javascript"></script>
<script src="js/plugins/bootstrap-select.min.js" type="text/javascript"></script>
<script src="js/material-kit.min.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
</body>
</html>