HTML Tutorial - #10 Create Navigation Bar in HTML

Опубликовано: 31 Январь 2025
на канале: Active Developer
8
2

CREATE NAVIGATION BAR ON THE PAGE

Styles for navigation used inside lesson:
header{
background-color: orange;
left: 0;
right: 0;
top: 5px;
height: 30px;
display: flex;
align-items: center;
box-shadow: 0 0 25px 0 black;
margin-bottom:20px;
}
header * {
display: inline;
}
header li {
margin: 20px;
}
header li a {
color: blue;
text-decoration: none;
}