-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
119 lines (105 loc) · 5.14 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- site verification / google serach console -->
<meta name="google-site-verification" content="kt8vAp18lbOUEcgbN2h9MpLDV8dA2ftIgWQp4VkqWMo" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Converts decimal OR FIS numbers. Also, can calculate decimal and FIS numbers together. FIS -> Feet-Inch-Sixteenth" />
<meta name="author" content="Isaac Dozier">
<meta itemprop="name" content="Inch Fraction Calculator">
<meta itemprop="image" content="">
<meta name="mobile-web-app-capable" content="yes">
<meta id="theme-color" name="theme-color" content="#000000">
<base target="_blank">
<link rel="canonical" href="http://inchfractioncalculator.com/"/>
<link rel="shortcut icon" href="img/favicon.ico" />
<!-- custom styles -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<script async custom-element="amp-auto-ads"
src="https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js">
</script>
<title>Inch Fraction Calculator for Construction Professionals</title>
</head>
<body onload="loadContent('Instructions')">
<div id="Content" class="container">
<div class="row top">
<div class="col-sm-12 col-md-6 col-lg-4">
<h1 class="heading">Inch Fraction <br />Calculator</h1>
</div>
<div class="col-sm-12 col-md-6 col-lg-8 input-group">
<input type="text" class="form-control" id="input" placeholder="0.00" onkeydown="calculate(this)" max-length="100" autocomplete="off">
<div class="input-group-btn">
<button class="button btn btn-primary btn-lg" type="submit" onclick="calculate()" value="Calculate">=
</button>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-4 history">
<span id="userMessage"><br />Converts and calculates feet in decimal format to inch-fraction.<br /><br />This calculator can also convert inch-fraction to decimal format.<br /><br />Accurate to within 0.03125 of an inch (0.5 sixteenth).</span>
<p id="result"></p>
</div>
<div class="col-sm-12 col-md-12 col-lg-8 main">
<div id="info" class="row info"></div>
</div>
</div>
<div class="row">
<div class="col">
<amp-auto-ads type="adsense"
data-ad-client="ca-pub-9409668607681174">
</amp-auto-ads>
<br /><br />
<button title="version updates" onclick="loadContent(this.innerHTML)">Updates</button>
<button title="version updates" onclick="loadContent(this.innerHTML)">Instructions</button>
<br /><br />
<p>
Fraction-inch measurements are specific to the construction industry.
It's a form of measurement that uses base-10, base-12 and base-16 in three tiers.
This allows construction professionals to work with whole numbers to make precise cuts rather than relying on the decimal system.
This can be seen when reading a tape measure, feet are broken up into 12 segments (inches) and inches are broken up into 16 segments (sixteenths).
<br />
<br />
For example:
<br />
-> 1.333 equals 01-04-00 (FIS)
<br />
-> 1.339 equals 01-04-01 (FIS)
<br />
-> 1.411 equals 01-04-15 (FIS)
</p>
</div>
</div>
<div class="row">
<div class="col">
<p class="foot">
v1.3.3-beta<br />
Built by <a href="http://isaacdozier.com">Isaac Dozier</a>
</p>
</div>
</div>
</div>
<script src="calculate.js"></script>
<script src="pages.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-112421020-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-112421020-1');
</script>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js" integrity="sha384-a5N7Y/aK3qNeh15eJKGWxsqtnX/wWdSZSKp+81YjTmS15nvnvxKHuzaWwXHDli+4" crossorigin="anonymous"></script>
</body>
</html>