-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
59 lines (59 loc) · 1.09 KB
/
header.html
File metadata and controls
59 lines (59 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<title></title>
<style>
:root{
--blue:#031F73;
--yellow: #F2B705;
--gray:#F2F2F2;
--sm: 14px;
--s: 12px;
}
body{
margin: 0;
font-family: 'Montserrat', sans-serif;
}
.header{
display: flex;
padding: 29px;
justify-content: space-between;
border-bottom: 2px solid var(--blue);
}
.left{
display: flex;
justify-content: center;
}
.right{
display: flex;
justify-content: center;
}
.left p{
font-size: 30px;
margin: 0;
}
.right p{
font-size:20px;
margin:0;
}
.right img{
margin-left:20px;
}
</style>
</head>
<body>
<div class="header">
<div class="left">
<p>Áreas</p>
</div>
<div class="right">
<p>NOMBRE DE ADMINISTRADOR</p>
<img src="./icons/admin.svg" alt="">
</div>
</nav>
</body>
</html>