-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
77 lines (69 loc) · 2.16 KB
/
header.html
File metadata and controls
77 lines (69 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document Layout</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.header {
background-color: #6A5ACD; /* Adjust color to match image */
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px; /* Adjust padding to match image */
}
.menu-icon {
display: flex;
flex-direction: column;
justify-content: space-around;
height: 24px; /* Adjust height to match image */
}
.menu-icon div {
width: 30px; /* Adjust width to match image */
height: 4px; /* Adjust height to match image */
background-color: black;
}
.profile {
display: flex;
align-items: center;
}
.profile-icon {
width: 40px; /* Adjust size to match image */
height: 40px; /* Adjust size to match image */
border-radius: 50%;
background-color: white;
display: flex;
justify-content: center;
align-items: center;
margin-right: 10px; /* Adjust margin to match image */
}
.profile-icon::before {
content: '';
width: 60%;
height: 60%;
background-color: #6A5ACD; /* Same as header bg color */
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
</style>
</head>
<body>
<div class="header">
<div class="menu-icon">
<div></div>
<div></div>
<div></div>
</div>
<div>*Untitled Document</div>
<div class="profile">
<div class="profile-icon"></div>
<span>Justin Hallet</span>
</div>
</div>
</body>
</html>