-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (90 loc) · 3.38 KB
/
index.html
File metadata and controls
90 lines (90 loc) · 3.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link rel="stylesheet" href="dash.css" />
</head>
<body>
<div class="main">
<header class="header">
<div class="search">
<i class="fas fa-search"></i>
<button class="search-btn"></button>
<input type="text" class="search-input" />
<button class="notif-btn">
<i class="fas fa-bell"></i>
</button>
<div class="profi">
<img
src="https://avataaars.io/?avatarStyle=Circle&topType=ShortHairShortFlat&accessoriesType=Prescription01&hairColor=BrownDark&facialHairType=BeardLight&facialHairColor=BrownDark&clotheType=Hoodie&clotheColor=PastelBlue&eyeType=Happy&eyebrowType=DefaultNatural&mouthType=Smile&skinColor=Light"
alt="Profile Avatar"
/>
</div>
<h4>Morgan Oakley</h4>
</div>
<div class="user">
<div class="profi" style="height: 78px">
<img
src="https://avataaars.io/?avatarStyle=Circle&topType=ShortHairShortFlat&accessoriesType=Prescription01&hairColor=BrownDark&facialHairType=BeardLight&facialHairColor=BrownDark&clotheType=Hoodie&clotheColor=PastelBlue&eyeType=Happy&eyebrowType=DefaultNatural&mouthType=Smile&skinColor=Light"
alt="Profile Avatar"
/>
</div>
<div class="info">
<p>Hi There,</p>
<h3>Morgan Oakley(@morgan)</h3>
</div>
<button class="btn">New</button>
<button class="btn">Upload</button>
<button class="btn">Share</button>
</div>
</header>
<div class="side">
<div>
<ul class="opt">
<li>
<h2>
<svg xmlns="http://www.w3.org/2000/svg" class="da">
<title>view-dashboard</title>
<path
d="M13,3V9H21V3M13,21H21V11H13M3,21H11V15H3M3,13H11V3H3V13Z"
fill="white"
/></svg
>Dashboard
</h2>
</li>
<li><i class="fas fa-home"></i> Home</li>
<li><i class="fas fa-user"></i> Profile</li>
<li><i class="fas fa-envelope"></i> Messages</li>
<li><i class="fas fa-history"></i> History</li>
<li><i class="fas fa-tasks"></i> Tasks</li>
<li><i class="fas fa-users"></i> Communities</li>
<br /><br />
<li><i class="fas fa-cog"></i> Settings</li>
<li><i class="fas fa-life-ring"></i> Support</li>
<li><i class="fas fa-shield-alt"></i> Privacy</li>
</ul>
</div>
</div>
<div class="container">
<div class="project-card">
<h3>Super Cool Project</h3>
<p>
this is radnom text you should NOT waste your time reading it, just
stop reading! oh god why you still reading broo!
</p>
<div class="project-icons">
<i class="fas fa-star"></i>
<i class="fas fa-eye"></i>
<i class="fas fa-lightbulb"></i>
</div>
</div>
</div>
</div>
</body>
</html>