-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (47 loc) · 1.92 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Cable Length Calculator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/style.css">
<script async defer src="./js/index.js"></script>
</head>
<body>
<div class="container">
<form>
<span data-tooltip-text="The diameter of your dowel that you are using for coiling, in millimeters">Dowel Diameter</span>
<input
type="text"
placeholder="Dowel Diameter (mm)"
id="dowel_diameter"
value=""
>
<span data-tooltip-text="The length that you want your coil to be in inches">Coil Length</span>
<input
type="text"
placeholder="Coil Length (inches)"
id="coil_length"
value=""
>
<span data-tooltip-text="The diameter of your cable once sleeveed, in milimeters">Cable Diameter</span>
<input
type="text"
placeholder="Cable Diameter (mm)"
id="cable_diameter"
value=""
>
<span data-tooltip-text="The amount of cable you want on either side of the coil for the connectors, please allow a few centimeters extra for the wire stripping">Cable Allowance</span>
<input
type="text"
placeholder="Cable Allowance (cm)"
id="cable_allowance"
value="10"
>
<input id="submit_button" type="submit">
</form>
<p id="length_result_text"></p>
</div>
</body>
</html>