-
Notifications
You must be signed in to change notification settings - Fork 0
/
router.html
45 lines (36 loc) · 1.58 KB
/
router.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
<!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>Router</title>
</head>
<body>
<!-- Router Cutting -->
<div class = "routerTiming">
<h3>Router Cutter Timing</h3>
<p class="description">Enter the text to be cut, letter heigh and material thickness to get cut time in min</p>
<!-- <div class = "routerTimingWrapper"> -->
<div class = contentWrapper>
<div class="routerColumn1">
<p>Text to Router</p>
<p>Letter Height</p>
<p>Material Thickness</p>
<p>Shoulder</p>
</div>
<div class="routerColumn2">
<input type="text" id="routText" name="routText" style="width:100px;"></input><br>
<input type="text" id="routHeight" name="routHeight" style="width:50px;"></input><br>
<input type="text" id="routThickness" name="routThickness" style="width:50px;"></input><br>
<input type="checkbox" id="routFlange" name="routFlange"></input>
</div>
<div class="routerColumn3">
<button onclick = "routerTextCalc()">Calculate</button>
</div>
</div>
<p id="routLettersAnswer"></p>
</div>
</body>
<script type = "text/javascript" src = "signcalc.js"></script>
</html>