-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (46 loc) · 2.62 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Land and Buildings Transaction Tax Calculator</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
padding-top: 25px;
padding-bottom: 20px;
}
</style>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootswatch/3.3.1/simplex/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
</head>
<body>
<div class="container">
<div class="row clearfix">
<div class="col-md-12 column">
<div class="jumbotron">
<h1>Land and Buildings Transaction Tax calculator</h1>
<p>Enter a house price to see how much Scottish Land and Buildings Transaction Tax Tax you'd need to pay (after April 1st 2015).</p>
<input id="houseprice" name="houseprice" type="text">
<button id="calculate" name="calculate" class="btn btn-success">Calculate</button>
<p id="result" class="hide-text">Result: <span id="result-figure"></span></p>
</div>
<p class="hide-text" id="disclaimer"><small>This is a guideline figure only for individuals making residential purchases in Scotland from 1st April 2015 onwards, based on the <a href="http://www.scotland.gov.uk/Topics/Government/Finance/scottishapproach/lbtt">rates published by the Scottish Government</a> but not yet approved by the Scottish Parliament. Please seek professional confirmation. Visit our <a href="http://stampdutycalculator.tax">UK Stamp Duty Land Tax calculator</a> for UK transactions outside Scotland.</small></p>
</div>
</div>
<hr>
<footer>
<small>©2015 <a href="http://spanconf.io">Span Conference Ltd</a></small>
</footer>
</div> <!-- /container -->
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<script src="js/autonumeric-1.9.30.js"></script>
</body>
</html>