-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.html
More file actions
99 lines (80 loc) · 3.3 KB
/
pricing.html
File metadata and controls
99 lines (80 loc) · 3.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pricing</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="http://www.parsecdn.com/js/parse-1.6.14.min.js"></script>
</head>
<body>
<nav class=" navbar navbar-inverse">
<div class="container-fluid">
<!-- logo -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collaspe" data-target="#mainnavbar">
<!-- make the three line icon found on chrome in the menu bar for settings-->
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand">LPX</a>
</div>
<!-- MENU ITEMS-->
<div class="collaspe navbar-collaspe" id="mainnavbar">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<!-- right align menu item for login and sign uo buttons-->
<ul class="nav navbar-nav navbar-right" id="toolsnav">
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<br/><br/>
<h3>
</div>
<div class="row ">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="db-wrapper">
<div class="db-pricing-seven">
<ul>
<li class="price">
<i class="glyphicon glyphicon-qrcode"></i>
LPX - $49.99
</li>
<li>Access to our system</li>
<li>LPX Dashboard</li>
<li>Price comparisons</li>
<script async="async" src="https://www.paypalobjects.com/js/external/paypal-button.min.js?merchant=paypal@lpxco.com"
data-button="subscribe"
data-name="LPX Subscription"
data-amount="49.99"
data-recurrence="12"
data-period="M"
data-callback="https://www.google.com"
></script>
</ul>
<div class="pricing-footer">
</div>
</div>
</div>
</div>
<div class="navbar-fixed-bottom">
<div class="container">
<p class="navbar-text pull-left">© 2016 LPX</p>
<a href="#" class="navbar-btn btn btn-info pull-right" >Support</a>
</div>
</div>
</body>
</html>