Search
 
SCRIPT & CODE EXAMPLE
 

HTML

membuat navbar html sederhana

<html>
	<head>
	<title>Navbar</title>
	<style>
	* {margin:0; padding:0;}
	 
	body {
	 background-color:#fff;
	 font-family:Arial, Helvetica, sans-serif;
	 color:#000;
	}

	nav {
	 margin:auto;
	 text-align: center;
	 width: 100%;
	} 

	nav ul ul {
	 display: none;
	}

	nav ul li:hover > ul{
	display: block;
	width: 150px;
	}

	nav ul {
	 background: #53bd84;
	 padding: 0 20px;
	 list-style: none;
	 position: relative;
	 display: inline-table;
	 width: 100%;
	}

	nav ul:after {
	 content: ""; 
	 clear:both; 
	 display: block;
	}

	nav ul li{
	 float:left;
	}

	nav ul li:hover{
	 background:#666;
	}

	nav ul li:hover a{
	 color:#fff;
	}

	nav ul li a{
	 display: block;
	 padding: 25px;
	 color: #fff;
	 text-decoration: none;
	}

	nav ul ul{
	 background: #53bd84;
	 border-radius: 0px;
	 padding: 0;
	 position: absolute;
	 top:100%;
	}

	nav ul ul li{
	 float:none;
	 border-top: 1px soild #53bd84;
	 border-bottom: 1px solid #53bd84;
	 position: relative;
	}

	nav ul ul li a{
	 padding: 15px 40px;
	 color: #fff;
	}

	nav ul ul li a:hover{
	 background-color: #666;
	}

	nav ul ul ul{
	 position: absolute;
	 left: 100%;
	 top: 0;
	}
	</style>
</head>
<body>
<nav>
	<ul>
	 	<li><a href="#">Home</a></li>
	 	<li><a href="#">Input</a>
		 	<ul>
			 	<li><a href="#">Anggota</a></li>
			 	<li><a href="#">Buku</a></li>
			 	<li><a href="#">Kategori Buku</a></li>
		 	</ul>
 		</li>
 		<li><a href="#">Transaksi</a>
		 	<ul>
			 	<li><a href="#">Peminjaman</a></li>
			 	<li><a href="#">Pengembalian</a></li>
		 	</ul>
		</li>
 		<li><a href="#" onClick="return confirm ('Yakin?')">Logout</a></li>
	</ul>
</nav>
</body>
</html>
Comment

PREVIOUS NEXT
Code Example
Html :: bootstrap form navbar for add new row 
Html :: falling star animation code 
Html :: dashboard box in adminlte 
Html :: virtual pet comp 105 code 
Html :: github find out download filesize 
Html :: should the logo be inside the ul in htm 
Html :: how to put < in html 
Html :: remove jsessionid from url spring 
Html :: html barcode scanner 
Html :: b-table-column v-slot undefined 
Html :: types of html requests 
Html :: html get button text 
Html :: klaviyo.js snippet 
Html :: make element be positioned behind its parent, but in front of its grandparent 
Html :: old input file 
Html :: Prompt to enable JavaScript 
Html :: mettre des écritaux sur le coté html 
Html :: devexpress aspxdatagridview set column alignment 
Html :: rb_dash-2 
Html :: HOW TO PERFORM AN ACTION AN OPTION IS CLICKED IN DROP DOWN 
Html :: dashboard html arduino 
Html :: telerik radgrid export to excel keep leading zeros 
Html :: strip newlines in jekyll 
Html :: texto desplegable html 
Html :: banner slider bootstrap 
Html :: ternary inside html razor 
Html :: how to create a quiz in p5 
Html :: hirudhimap.blogspot.com 
Html :: input button in html 
Html :: html range start value 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =