Hey everyone i have a little problem with the navigation bar, i have created the design of the menu but i want to be in one file (menu.html) and to show on all pages in the website... here is my code for menu.html
<html>
<body>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<style>
form.position-and-style {
opacity:1;
position:absolute;
border-radius:20px;
width:150px;
left:-1%;
top:10%;
height:100px;
background-color:white;
border:1px solid gray;
}
#pocetna {
opacity:1;
position:absolute;
top:10%;
left:20%;
font-feature-settings:normal;
font-style:normal;
font-family:sans-serif;
font-size:15px;
}
#kontakt {
opacity:1;
position:absolute;
top:70%;
left:20%;
font-feature-settings:normal;
font-style:normal;
font-family:sans-serif;
font-size:15px;
}
</style>
<form class='position-and-style'>
<a id='pocetna' href='index.html'><b>Почетна</b></a>
<a id='kontakt' href='sleden_cekor.html'><b>Контакт</b></a>
</form>
</body>
</html>
Tell me how can i make this menu appear on all sites i have with out copy and pasting the same code in every single page.
Thank you :)