How to create navigation bar using Html and CSS

preview_player
Показать описание
In this video you will learn How to create navigation bar using Html and CSS.

=============********==============
Check some popular videos on my channel:-

How To Create A Website Using HTML And CSS Step By Step Website Tutorial:-
----------------------------------------------
How to create transparent navigation bar using html and css:-
----------------------------------------------
How to write text on image - HTML and CSS:-
----------------------------------------------
how to create a website using html and css step by step website tutorial:-
----------------------------------------------
how to create navigation bar with search box:-
----------------------------------------------
how to create search bar in html and css:-
----------------------------------------------
How to center a div inside a div with html and css:-
----------------------------------------------
How To Create A Website Using HTML And CSS - part 1:-
----------------------------------------------
how to create responsive image gallery using html and css:-
----------------------------------------------
changing background color animation - html css tutorial:-
----------------------------------------------
Responsive font size using html and css:-
----------------------------------------------
Responsive Full Page Background Image with CSS3:-
----------------------------------------------
Like This video and Subscribe This Channel "Web dev"
Рекомендации по теме
Комментарии
Автор

the script: <!DOCTYPE html>
<html>
<head>
<title>Startseite</title>
<style type="text/css">
body{
font-family: 'lato', sans-serif;
font-size:12px;
background: #2c3e50;

}
nav{
margin: 30px auto;
position: relative;
width: 590px;
height: 50px;
background:#34495e;
font-size: 0;

}

nav a{
line-height: 50px;
height: 100%;
font-size: 15px;
display: inline-block;
font-size: 15px;
display:inline-block;
position: relative;
z-index: 1;
text-decoration: none;
text-transform: uppercase;
text-align: center;
color: #fff;
cursor: pointer;


}

nav .animation {
position: absolute;
height: 100%;
top: 0;
z-index: 0;
transition: all 0.5s ease 0s;

}


nav a:nth-child(1){
width: 100px;


}

nav a:nth-child(2){
width: 110px;


}
nav a:nth-child(3){
width: 100px;


}
nav a:nth-child(4){
width: 160px;


}
nav a:nth-child(5){
width: 120px;


}
nav .home,
width: 100px;
left:0;
background: #1abc9c;


}

width: 110px;
left:100px;
background: e74c3c;


}


width: 100px;
left: 210px;
background: #3498db;


}

width: 160px;
left:310px;
background: #9b59b6;


}

width: 120px;
left:470px;
background: #e67e22;


}

</style>



</head>
<body>
<nav>
<a href="#">Startseite</a>
<a href="#">Blog</a>
<a href="#">Über uns</a>
<a href="#">Portfolio</a>
<a href="#">Kontakt</a>
<div class="animation home"> </div>

</nav>



</body>


</html>

SlySlice
Автор

Please provide us the background images

gamerzonnyt