-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
161 lines (121 loc) · 6.24 KB
/
profile.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
<!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>Profile</title>
<!-- CSS Custom Link -->
<link rel="stylesheet" href="css/style.css">
<!-- Bootstrap CSS Online Link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Bootstrap Icon Online Link -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css">
<!-- Boxicon Online Link -->
<link href='https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css' rel='stylesheet'>
<!-- Fontawesome Online Link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<!-- ====== Nav Part ====== -->
<nav class="d-flex align-items-center position-sticky top-0 z-">
<div class="container">
<div class="row d-flex">
<div class="col-lg-4 col-md-4 col-sm-6 d-flex">
<div class="logo me-2">
<i class='bx bx-trending-up'></i>
</div>
<h5>Pro-Promotion.com</h5>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 d-flex justify-content-evenly align-items-center second-col">
<div class="task d-flex">
<a href="index.html" class="text-decoration-none d-flex active">
<i class='bx bxs-category'></i>
<span class="ms-2">Task List</span>
</a>
</div>
<div class="news d-flex ">
<a href="#" class="text-decoration-none d-flex active">
<i class='bx bxs-news'></i>
<span class="ms-2">News</span></a>
</div>
<div class="help d-flex">
<a href="#" class="text-decoration-none d-flex active">
<i class='bx bxs-help-circle'></i>
<span class="ms-2">Help</span></a>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 d-flex justify-content-end">
<div class="user d-flex">
<div class="plus d-flex">
<div class="icon me-2">
<i class='bx bx-plus'></i>
</div>
<i class='bx bxs-coin-stack p-2 ms-1'></i>
<span>2023</span>
</div>
<div class="user-logo">
<div class="dropdown">
<div class="d-flex align-items-center" id="dropdownMenu2" data-bs-toggle="dropdown"
aria-expanded="false">
<img src="img/user.png" alt="no photo">
<i class='bx bx-chevron-down'></i>
</div>
<ul class="dropdown-menu mt-2" aria-labelledby="dropdownMenu2">
<li>
<div class="dropdown-item"><a class="text-decoration-none d-flex" href="#">
<i class='bx bxs-user'></i><span class="ps-2"> My profile</span></a>
</div>
</li>
<li>
<div class="dropdown-item"><a class="text-decoration-none d-flex" href="#">
<i class='bx bxs-category'></i><span class="ps-2"> Task
history</span></a>
</div>
</li>
<div class="line"></div>
<li>
<div class="dropdown-item d-flex">
<i class='bx bxs-sun'></i>
<span class="ps-2">Dark mode</span>
<!-- Rounded switch -->
<input type="checkbox" class="toggle ms-auto" checked>
</div>
</li>
<div class="line"></div>
<li>
<div class="dropdown-item mb-2 logout"><a class="text-decoration-none d-flex"
href="#">
<i class='bx bx-log-in'></i><span class="ps-2">Log out</span></a>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="div" id="div"></div>
</nav>
<!-- ====== Section Part ====== -->
<section>
<div class="container">
<div class="row">
<h1>Profile</h1>
<div class="col-lg-4 col-md-6 col-sm-12">
</div>
<div class="col-lg-4 col-md-6 col-sm-12"></div>
<div class="col-lg-4 col-md-6 col-sm-12"></div>
</div>
</div>
</section>
<!-- Bootstrap JS Online Link -->
<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>
<!-- JavaScript Custom Link -->
<script src="js/main.js"></script>
</body>
</html>