-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
47 lines (43 loc) · 1.6 KB
/
portfolio.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
<!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>Dashboard | NetMargin</title>
<link rel="stylesheet" href="/css/portfolio.css">
</head>
<body>
<section class="bodyMain">
<div class="leftFixMenu">
<img src="/img/logo.png" alt="logo" class="logo">
<div class="profilePicDiv">
<img src="/img/4.png" alt="profilePic" class="profilePic">
</div>
<div class="nameDiv">
<p class="p1name">Taher Abbas</p>
<p class="p2number">+91 9398035079</p>
</div>
<!--Buttons-->
<div class="btnDiv">
<a href="dashboard.html" style="text-decoration: none;">
<button class="btn"><p>Dashboard</p></button>
</a>
<a href="dashboard.html" style="text-decoration: none;">
<button class="btn"><p>Watch List</p></button>
</a>
<a href="dashboard.html" style="text-decoration: none;">
<button class="btnD"><p>Portfolio , P & L</p></button>
</a>
</div>
<!--logout-->
<div class="logoutDiv">
<a href="" class="logout">Log Out <img src="/img/5.png" alt="" class="icon"></a>
</div>
</div>
<div class="mainPage">
<p class="dasht1">Welcome User Start Investing.</p>
</div>
</section>
</body>
</html>