-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandingpage-dashboard.html
98 lines (69 loc) · 3.27 KB
/
landingpage-dashboard.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
<!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>Portfolio</title>
<link rel="stylesheet" href="css/dashboard.css">
<!-- --------boxIcon------ -->
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
</head>
<body>
<div id="user">
<div id="left-side">
<header>
<img class="profile-dashboard" src="photos/norbert.jfif">
<nav>
<div class="blog">
<a href="newblogpost.html"><i class='bx bxl-blogger'
style="color: white; width: 10%; height: 10px;"> Manage</i></a>
</div>
<div class="chat">
<a href="chats-dashboard.html"><i class='bx bxs-message-dots'
style="color: white; width: 10%; height: 10px;"> Chats</i></a>
</div>
<div class="project">
<a href="projects-dashboard.html"><i class='bx bxs-folder-minus'
style="color: white; width: 10%; height: 10px;"> Projects</i></a>
</div>
<div class="user">
<a href="users-dashboard.html"><i class='bx bxs-user'
style="color: white; width: 10%; height: 10px;"> Users</i></a>
</div>
<div class="setting">
<a href="#"><i class='bx bx-cog'
style="color: white; width: 10%; height: 10px;"> Settings</i></a>
</div>
<div class="logout">
<a href="login.html"><i class='bx bx-log-out'
style="color: #CE7B7B; width: 10%; height: 10px;"> Logout</i></a>
</div>
<div class="vl"></div>
</nav>
</header>
</div>
<!-- ---------------------------------------------------- -->
<div class="mydashboard" style="color: white;">
<h1>My Dashboard</h1>
<p style="margin-top: -15px;">Hi Norbert Welcome back.</p>
</div>
<div class="search">
<input type="text" placeholder="Search everything" name="search">
<button type="text" style="background-color: #3C3535;"><i class='bx bx-search'
style="color: white;"></i></button>
</div>
<div style="margin-left:400px ; margin-top: 100px;">
<h1 style="color: white; font-size: 70px;">Wel<span class="my-header-1"
style="color: #CE7B7B; font-size: 50px; ">come</span></h1>
</div>
<div style="margin-left: 700px; margin-top: 50px;">
<h1 id="myheader-2" style="color: white; font-size: 70px;">To</h1>
</div>
<div style="margin-left: 900px; margin-top: 50px;">
<h1 style="color: white;">My <span class="my-header-1"
style="color: #CE7B7B; font-size: 70px;">Dash</span>board</h1>
</div>
</div>
</body>
</html>