-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome_page.html
132 lines (113 loc) · 4.17 KB
/
home_page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="home_page_decor.css">
</head>
<body>
<div class="portfolio-section-parent">
<!-- portfolio section -->
<div class="myPortfolio-section">
<h5 class="myPortfolio-section-decor">
PORTFOLIO INVESTMENT
</h5>
<H2 class="myPortfolio-amount-decor">
₹232,091
</H2>
</div>
<!-- ============================ -->
<div class="profit-loss-section">
<!-- section for profit -->
<div class="myWallet-section">
<h5 class="profit-section-decor">
PORTFOLIO PROFIT
</h5>
<h2 class="profit-amount-decor" id="portfolio-profit">
₹1,749
</h2>
</div>
<!-- section for loss -->
<div class="myWallet-section">
<h5 class="profit-section-decor">
PORTFOLIO LOSS
</h5>
<h2 class="profit-amount-decor" id="portfolio-loss">
₹-749
</h2>
</div>
</div>
</div>
<div class="options-parent">
<div class="options-parent-div">
<!-- market prices section -->
<div class="market-price">
<!-- ==========market price========= -->
<div class="nifty">
<h4 class="market-text-decor">
NIFTY50
</h4>
<h5 class="market-price-decor">
22,475
</h5>
</div>
<!-- ========bank nifty========= -->
<div class="bank-nifty">
<h4 class="market-text-decor">
BANK NIFTY
</h4>
<h5 class="market-price-decor">
22,475
</h5>
</div>
<!-- ============sensex============ -->
<div class="sensex">
<h4 class="market-text-decor">
SENSEX
</h4>
<h5 class="market-price-decor">
22,475
</h5>
</div>
</div>
</div>
</div>
</div>
<!-- options section -->
<div class="options-parent">
<!-- =======Add stock option======= -->
<a href="add_stock.html" class="add-stock-link-decor">
<div id="option-add-stock" class="options-decor">
<img src="add_circle_FILL0_wght400_GRAD0_opsz24.svg" alt="image not found" class="options-image-decor">
<h3 class="options-text-decor">
ADD STOCK
</h3>
</div>
</a>
<!-- =======Sell option======== -->
<a href="sell_stock.html" class="selling-stock-link-decor">
<div id="option-sell" class="options-decor">
<img src="sell_FILL0_wght400_GRAD0_opsz24.svg" alt="image not found" class="options-image-decor">
<h3 class="options-text-decor">
SELL
</h3>
</div>
</a>
<!-- ========My stocks======= -->
<div id="option-my-stocks" class="options-decor">
<img src="list_alt_FILL0_wght400_GRAD0_opsz24.svg" alt="image not found" class="options-image-decor">
<h3 class="options-text-decor">
MY STOCKS
</h3>
</div>
<!-- ========search======== -->
<div id="option-search" class="options-decor">
<img src="query_stats_FILL0_wght400_GRAD0_opsz24.svg" alt="image not found" class="options-image-decor">
<h3 class="options-text-decor">
SEARCH
</h3>
</div>
</div>
</body>
</html>