-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
125 lines (120 loc) · 4.91 KB
/
index.php
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
120
121
122
123
124
125
<?php
/**
* Import Header
*/
include_once './header.html';
?>
<!-- Start of Content -->
<!-- Home -->
<section id="home" class="text-center">
<div class="row 5 my-4">
<div class="col-md-4 offset-2">
<img src="./images/desktop.png" alt="desktop-photo">
</div>
<div class="col-md-4 py-5">
<h1 class="display-4">Know Your Prospects</h1>
<p class="lead">
Net worth and Lead Qualification
No need to speak to a sales person
Jump in and try our tool for one week free
Browse our clear pricing starting at $19.99
</p>
</div>
</div>
</section>
<!-- End Home -->
<!-- What We Do -->
<section id="what-we-do" class="text-center bg-086375 py-4">
<div class="row">
<div class="col-md-4 offset-2">
<h1 class="display-4">What We Do</h1>
<p class="mt-4 lead">We help identify your top prospects. Lets be honest you need money, and they have it. The problem lies in who to ask and how much to ask for.</p>
</div>
<div class="col-md-4">
<img class="what-we-do-img" src="./images/moneysearch.jpg" alt="moneysearch">
</div>
</div>
</section>
<!-- End What We Do -->
<!-- Pricing -->
<section id="pricing">
<div class="pricing-header px-3 py-3 pt-md-5 pb-md-4 mx-auto text-center">
<h1 class="display-4">Pricing</h1>
<p class="lead col-md-6 offset-3">
Our affordable pricing structure is always open but if you have a interest in a custom integration or project
idea we have a team of amazing engineers ready to listen.
</p>
</div>
<div class="container">
<div class="row mb-3 text-center">
<div class="col-md-4">
<div class="card mb-4 box-shadow">
<div class="card-header bg-33658a">
<h4 class="my-0 font-weight-normal">Free</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">$0 <small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>10 users included</li>
<li>2 GB of storage</li>
<li>Email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="btn btn-lg btn-block btn-outline-ds">Sign up for free</button>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 box-shadow">
<div class="card-header bg-4899ac">
<h4 class="my-0 font-weight-normal">Pro</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">$19 <small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>20 users included</li>
<li>10 GB of storage</li>
<li>Priority email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="btn btn-lg btn-block btn-ds">Get started</button>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 box-shadow">
<div class="card-header bg-55dde0">
<h4 class="my-0 font-weight-normal">Enterprise</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">$29 <small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>30 users included</li>
<li>15 GB of storage</li>
<li>Phone and email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="btn btn-lg btn-block btn-ds">Contact us</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Pricing -->
<!-- Contact -->
<section id="contact" class="mb-5 mx-auto text-center">
<h1 class="display-4">Contact Us</h1>
<p class="lead col-md-6 offset-3">
Our affordable pricing structure is always open but if you have a interest in a custom integration or project
idea we have a team of amazing engineers ready to listen.
</p>
</section>
<!-- End Contact -->
<!-- End of Content -->
<?php
/**
* Import Footer
*/
include_once './footer.html';
?>