-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (118 loc) · 5.13 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
120
121
122
123
124
125
126
127
128
129
130
131
132
<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, user-scalable=no">
<title>Wealth Way</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/all.css">
<script src="script.js"></script>
<script src="https://kit.fontawesome.com/628a767e5f.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.toggle').click(function () {
$('ul').toggleClass('active');
$('#change').toggleClass('fa-times');
})
})
</script>
</head>
<body>
<section class="header">
<nav>
<a href="index.html" class="logo"><img src="logo.png" alt="logo"></a>
<a class="toggle"><i id="change" class="fas fa-bars"></i></a>
<ul class="">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<section class="main-heading">
<div class="empty-container">
</div>
<div class="heading">
<h2>Personal Trading Advisor and Support for Investment</h2>
<p>Explore our deals and get the help from our experts that can help you in gaining high returns.</p>
<button class="btn"><a href="contact.html">Get Help Now</a></button>
</div>
</section>
</section>
<section class="choose">
<section class="container-head">
<h3>Why Choose Wealth Way?</h3>
</section>
<section class="content">
<section class="container one">
<div class=" font-logo "><i class="fas fa-scroll"></i></div>
<div class=" container-heading">
<h3>No Fee Unless You Earn Profit</h3>
</div>
<div class="container-text">We don't charge any fees unless you made profit under our consultancy and
help.</div>
</section>
<section class="container two">
<div class=" font-logo "><i class="fas fa-money-bill-wave" aria-hidden="true"></i></div>
<div class=" container-heading">
<h3>Higher Returns</h3>
</div>
<div class="container-text">We have provided higher returns and will consistently make profits for our
clients.</div>
</section>
<section class="container three">
<div class=" font-logo "><i class="fas fa-hands-helping"></i></div>
<div class=" container-heading">
<h3>Thousands of Happy Clients</h3>
</div>
<div class="container-text">There are tons of our clients who have earned huge profits and are delighted
by
the decision for taking consultancy services from our team.</div>
</section>
<section class="container four">
<div class=" font-logo "><i class="fas fa-trophy"></i></div>
<div class=" container-heading">
<h3>We are Undefeated</h3>
</div>
<div class="container-text">We have given our clients huge profits in low surcharges which make us
undefeted.</div>
</section>
</section>
</section>
<section class="quote">
<h2>Our company is a collective of amazing people striving to make profits for our clients.</h2>
<button class="btn"> <a href="contact.html">Get Help Now</a></button>
</section>
<section class="footer">
<div class="footer-box a">
<span class="foot-heading ">Contact Us</span>
<span class="foot-content">
<p>Sector no.- 42, M.R Road, Gorakhpur 273013.</p>
<p> [email protected]</p>
</span>
</div>
<div class="footer-box b">
<span class="foot-heading ">About Us</span>
<span class="foot-content">
<p> <a href="about.html">About Us</a> </p>
<p> <a href="contact.html"> Contact Us</a></p>
</span>
</div>
<div class="footer-box c">
<span class="foot-heading ">Working Hours</span>
<span class="foot-content">
<p> Mon: 8.30 AM - 5.30 PM</p>
<p> Tue: 8.30 AM - 5.30 PM</p>
<p> Wed: 8.30 AM - 5.30 PM</p>
<p> Thu: 8.30 AM - 5.30 PM</p>
<p> Fri: 8.30 AM - 5.30 PM</p>
</span>
</section>
<hr id="line">
<div class="footer-line">
<span class="foot-line">Copyright © 2021 Wealth Way </span>
<span class="foot-line">|<a class="foot-content" id="foot-content"
href="https://apro-services.netlify.app/"> Apro_Services </a> </span>
</div>
</body>
</html>