-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinvest.html
177 lines (173 loc) · 6.11 KB
/
invest.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<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" />
<title>Investing | CryptoKart</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/balance.css" />
<link rel="stylesheet" href="css/home.css" />
<link rel="icon" href="img/favicon.png" type="image/pg" sizes="16x16" />
</head>
<body>
<div class="row">
<div class="col-md-3 aside">
<div class="vertical-nav bg-white" id="sidebar">
<div class="py-4 px-3 mb-4 bg-light">
<div
class="media d-flex justify-content-between align-items-center"
>
<img
loading="lazy"
src="img/avatar.png"
alt="..."
width="80"
height="80"
class="mr-3 rounded-circle img-thumbnail shadow-sm"
/>
<div class="media-body">
<h4 class="m-0"> Ashutosh</h4>
</div>
<div class="menu" id="menu">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</div>
</div>
<ul class="nav flex-column bg-white mb-0">
<li class="nav-item">
<a href="./home.html" class="nav-link text-dark">
<i class="fa fa-th-large mr-3 text-primary fa-fw"></i>
dashboard
</a>
</li>
<br />
<li class="nav-item">
<a href="./myBalances.html" class="nav-link text-dark">
<i class="fa fa-bar-chart mr-3 text-primary fa-fw"></i>
my balances
</a>
</li>
<br />
<li class="nav-item">
<a href="NFTmarketplace/index.html" class="nav-link text-dark">
<i class="fa fa-shopping-cart mr-3 text-primary fa-fw"></i>
NFT Marketplace
</a>
</li>
<br />
<li class="nav-item">
<a href="./invest.html" class="nav-link text-dark">
<i class="fa fa-cubes mr-3 text-primary fa-fw"></i>
Invest
</a>
</li>
<br />
<li class="nav-item">
<a href="./cryptoNews.html" class="nav-link text-dark bg-light">
<i class="fa fa-newspaper-o mr-3 text-primary fa-fw"></i>
Crypto News
</a>
</li>
<br />
<li class="nav-item">
<a href="#" class="nav-link text-dark">
<i class="fa fa-cog mr-3 text-primary fa-fw"></i>
Settings
</a>
</li>
<br />
<li class="nav-item mt-5">
<a href="#" class="nav-link text-dark">
<i class="fa fa-sign-out mr-3 fa-fw" style="color: red"></i>
Log Out
</a>
</li>
</ul>
</div>
</div>
<div class="col-md-9 main">
<div class="news mt-5">
<h2>Start Investing Small And Make Big IMPACT.</h2>
<p class="text-muted">
You do your work, we will invest the money for you.
</p>
<div class="row">
<div class="col-md-4 col-sm-12">
<div class="card shadow-lg p-3 mb-5 rounded">
<div class="card-body">
<p>Begin journey from here</p>
<h4>Starter</h4>
<h2>$30</h2>
<ul>
<li>Invest in top 3 cryptos</li>
<li>Learn about cryptos from experts</li>
</ul>
<button type="button" class="btn btn-primary shadow-lg">
Choose Plan
</button>
</div>
</div>
</div>
<div class="col-md-4 col-sm-12">
<div class="card shadow-lg p-3 mb-5 rounded">
<div class="card-body">
<p>Discover the thrill of investing</p>
<h4>Popular</h4>
<h2>$70</h2>
<ul>
<li>All in starter pack</li>
<li>Chat support</li>
</ul>
<button type="button" class="btn btn-primary shadow-lg">
Choose Plan
</button>
</div>
</div>
</div>
<div class="col-md-4 col-sm-12">
<div class="card shadow-lg p-3 mb-5 rounded">
<div class="card-body">
<p>For the expert</p>
<h4>Pro</h4>
<h2>Custom</h2>
<ul>
<li>Everything from popular plan</li>
<li>Choose custom amount to invest</li>
<li>Expert consulatation</li>
</ul>
<button type="button" class="btn btn-primary shadow-lg">
Choose Plan
</button>
</div>
</div>
</div>
</div>
<h3>What is this?</h3>
<p>Investing in crypto currencies is risky.</p>
<p>
There is surely high return but also high risk which can't be
ignored.
</p>
<p>
Therefore, after choosing a plan, we distribute your money in top
performing cryptos, which increases the chances of high returns.
</p>
</div>
</div>
</div>
<!-- Bootstrap CDN -->
<script src="./js/home.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>