-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlanding-page.html
More file actions
104 lines (87 loc) · 4.14 KB
/
Copy pathlanding-page.html
File metadata and controls
104 lines (87 loc) · 4.14 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
100
101
102
103
104
<!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>JamiaCryptoWebsite</title>
<!-- Favicon -->
<link rel="icon" href="images/favicon.ico">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- CSS style sheet -->
<link rel="stylesheet" href="landing-page.css">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="https://kit.fontawesome.com/499f9a6e08.js" crossorigin="anonymous"></script>
</head>
<body>
<!--------------------------------------------- Nav Bar -------------------------------------------->
<div class="container-fluid">
<nav class="navbar navbar-expand-lg navbar-dark">
<img src="images/Logo.jpeg" alt="" class="navbar-brand logo">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto">
<li class="nav-item ">
<a href="index.html">Home</a>
</li>
<li class="nav-item">
<a href="about.html">About</a>
</li>
<li class="nav-item">
<a href="">Portfolio</a>
</li>
<li class="nav-item">
<a href="prices.php">Crypto Prices</a>
</li>
<li class="nav-item">
<a class="cta" href="">Logout</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="cont">
<div class="profile-wrapper">
<div class="profile-info">
<h2>Welcome Username</h2>
<h5>Student Id:</h5>
<h5>Roll No:</h5>
<h5>Email Address:</h5>
<h5>Department:</h5>
<h5>Contact Number:</h5>
</div>
<div class="user-buttons">
<button class="d-grid gap-2 col-6 btn btn-outline-success btn-lg"><a href="#">Portfolio</a></button>
</div>
<h3>How To Get Started</h3>
<p>After creating an account or logging in, you will be redirected to this homepage.</p>
<p>Now Click on the portfolio button to go to your trading page.</p>
<p>There you will see details like Available JamiaCoin, total investment, returns etc.</p>
<h4>Buying Coins</h4>
<p>Click on the buy button</p>
<p>Choose the coin you want to buy</p>
<p>Enter Your investment value</p>
<p>Enter the price of the coin and click on Buy</p>
<h4>Selling Coins</h4>
<p>Click on the sell button</p>
<p>Choose the coin you want to Sell</p>
<p>Enter the amount and click sell</p>
<h4>Transferring Coins</h4>
<p>Click on the transfer button</p>
<p>Choose the coin you want to Transfer</p>
<p>Enter the UserId of the recipient</p>
<p>Enter the amount and click Transfer</p>
<h2>Thats all you need to know to use our website. Happy Trading!!!</h2>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
</body>