-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
268 lines (265 loc) · 8.63 KB
/
index.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<!DOCTYPE html>
<html lang="en">
<head>
<title>Admin Dashboard</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="images/favicon.png" />
<link href="https://fonts.googleapis.com/icon?family=Material+Symbols+Rounded" rel="stylesheet" />
<link href="style.css" rel="stylesheet" defer />
</head>
<body>
<div class="sidebar">
<div class="logo">
<a class="sidebar-link" href="#">
<span class="material-symbols-rounded"> dashboard </span>
<p>Dashboard</p>
</a>
</div>
<div class="menu">
<ul>
<a href="#">
<li class="sidebar-link selected">
<span class="material-symbols-rounded"> home </span>
<p>Home</p>
</li>
</a>
<a href="#">
<li class="sidebar-link">
<span class="material-symbols-rounded"> badge </span>
<p>Profile</p>
</li>
</a>
<a href="#">
<li class="sidebar-link">
<span class="material-symbols-rounded"> message </span>
<p>Messages</p>
</li>
</a>
<a href="#">
<li class="sidebar-link">
<span class="material-symbols-rounded"> history </span>
<p>History</p>
</li>
</a>
<a href="#">
<li class="sidebar-link">
<span class="material-symbols-rounded"> task </span>
<p>Tasks</p>
</li>
</a>
<a href="#">
<li class="sidebar-link">
<span class="material-symbols-rounded"> people </span>
<p>Communities</p>
</li>
</a>
<br />
<a href="#">
<li class="sidebar-link">
<span class="material-symbols-rounded"> settings </span>
<p>Settings</p>
</li>
</a>
<a href="#">
<li class="sidebar-link">
<span class="material-symbols-rounded"> support </span>
<p>Support</p>
</li>
</a>
<a href="#">
<li class="sidebar-link">
<span class="material-symbols-rounded"> security </span>
<p>Privacy</p>
</li>
</a>
</ul>
</div>
</div>
<header>
<div class="search">
<span class="material-symbols-rounded"> search </span>
<input type="search" placeholder="Search for projects" />
</div>
<div class="notification-area">
<span class="material-symbols-rounded"> notifications_active </span>
<img class="profile-picture" src="images/profile-pictures/profile-pic1.png" alt="profile picture" />
<p>Emuel Vassallo</p>
</div>
<div class="greeting">
<img class="user-profile-picture" src="images/profile-pictures/profile-pic1.png" alt="profile picture" />
<div>
<p>Hi there,</p>
<p>Emuel Vassallo (@emuel)</p>
</div>
</div>
<div class="buttons">
<button>New</button>
<button>Upload</button>
<button>Share</button>
</div>
</header>
<main>
<div class="projects">
<p class="section-title">Your Projects</p>
<div class="project-card-container">
<div class="project-card">
<div>
<p>Super Cool Project</p>
<p>
Sed tempus ut lacus ut scelerisque. Suspendisse sollicitudin
nibh erat, id facilsis felis accusman nec.
</p>
</div>
<div class="project-card-icons">
<span class="material-symbols-rounded"> bookmark </span>
<span class="material-symbols-rounded"> delete </span>
<span class="material-symbols-rounded"> share </span>
</div>
</div>
<div class="project-card">
<div>
<p>Less Cool Project</p>
<p>
Nullam condimentum ipsum ut lectus vehicula consectetur.
Quiseque sed dolor tincidunt, consectetur sapien et, facilsis
dolor. Duis sem purus, dignissim ut sapien in, varius
pellentesque lacus.
</p>
</div>
<div class="project-card-icons">
<span class="material-symbols-rounded"> bookmark </span>
<span class="material-symbols-rounded"> delete </span>
<span class="material-symbols-rounded"> share </span>
</div>
</div>
<div class="project-card">
<div>
<p>Impossible App</p>
<p>
In hac habitasse platea dictumst. Vivamus dictum rutrum arcu, a
placerat velit sagittis id.
</p>
</div>
<div class="project-card-icons">
<span class="material-symbols-rounded"> bookmark </span>
<span class="material-symbols-rounded"> delete </span>
<span class="material-symbols-rounded"> share </span>
</div>
</div>
<div class="project-card">
<div>
<p>Easy Peasy App</p>
<p>
Etiam cursus eros ac efficiur fringilla. Vestibulum dignissim
urna eget accumsan aliquam. Curabitur dignissim nisi in tortor
commondo, ac bibendum magna tincidunt.
</p>
</div>
<div class="project-card-icons">
<span class="material-symbols-rounded"> bookmark </span>
<span class="material-symbols-rounded"> delete </span>
<span class="material-symbols-rounded"> share </span>
</div>
</div>
<div class="project-card">
<div>
<p>Ad Blocker</p>
<p>
Quisque eget rutrum nisl. Nam augue justo, cursus vitae metus
vel, pharetra hendrerit felis. Aliquam sed malesuada eros.
</p>
</div>
<div class="project-card-icons">
<span class="material-symbols-rounded"> bookmark </span>
<span class="material-symbols-rounded"> delete </span>
<span class="material-symbols-rounded"> share </span>
</div>
</div>
<div class="project-card">
<div>
<p>Money Maker</p>
<p>
Prasent convallis, libero quis congue elementum, nunc ante
faucibus sapien, ac scelerisque tortor purus sit amet ex.
Pellentesque mollis nec sem vel aliquam.
</p>
</div>
<div class="project-card-icons">
<span class="material-symbols-rounded"> bookmark </span>
<span class="material-symbols-rounded"> delete </span>
<span class="material-symbols-rounded"> share </span>
</div>
</div>
</div>
</div>
<div class="announcements">
<p class="section-title">Announcements</p>
<div>
<div>
<p>Site Maintenance</p>
<p>
Vestibulum condimentum tellus lacus, in accumsan elit maximus ac.
Donec hendrerit sodales congue...
</p>
</div>
<div>
<p>Community Share Day</p>
<p>
Nam vel lectus tincidunt, rutrum nulla eu, ornare libero. Aliquam
dictum accumsan porttitor...
</p>
</div>
<div>
<p>Updated Privacy Policy</p>
<p>
Phasellus efficitur nisi eget elit consectetur, eget condimentum
ante auctor. Cras frigilla sagittis sem in mattis...
</p>
</div>
</div>
</div>
<div class="trending">
<p class="section-title">Trending</p>
<div>
<div>
<img class="profile-picture" src="images/profile-pictures/profile-pic2.png" alt="profile picture 1" />
<div>
<p>@tegan</p>
<p>World Peace Builder</p>
</div>
</div>
<div>
<img class="profile-picture" src="images/profile-pictures/profile-pic1.png" alt="profile picture 2" />
<div>
<p>@emuel</p>
<p>Super Cool Project</p>
</div>
</div>
<div>
<img class="profile-picture" src="images/profile-pictures/profile-pic4.png" alt="profile picture 3" />
<div>
<p>@kendall</p>
<p>Life Changing App</p>
</div>
</div>
<div>
<img class="profile-picture" src="images/profile-pictures/profile-pic5.png" alt="profile picture 4" />
<div>
<p>@alex</p>
<p>No Traffic Maker</p>
</div>
</div>
</div>
</div>
</main>
<footer>
<p>
Made with ❤️ by
<a href="https://github.com/emuel-vassallo/" target="_blank">
Emuel Vassallo
</a>
</p>
</footer>
</body>
</html>