"> Insert title here "> Insert title here ">

image.png

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
	li { list-style-type : none; }
	.gnb li { display : inline; }
	.gnb li a { display : inline-block;
		background : brown; color : white;
		width : 100px; height : 30px; line-height : 30px;
		text-align : center;
		text-decoration : none;
	 }
	 .gnb li a:hover { background : darkblue;
		text-decoration : underline;
	 }
</style>
</head>
<body>
	<ul class="gnb">
		<li><a href="#">Company</a></li>
		<li><a href="#">Product</a></li>
		<li><a href="#">Service</a></li>
		<li><a href="#">Community</a></li>
	</ul>
	
	<ul class="lnb">
		<li><a href="#">Company</a></li>
		<li><a href="#">Product</a></li>
		<li><a href="#">Service</a></li>
		<li><a href="#">Community</a></li>
	</ul>
	<ul class="lnb">
		<li><a href="#">Company</a></li>
		<li><a href="#">Product</a></li>
		<li><a href="#">Service</a></li>
		<li><a href="#">Community</a></li>
	</ul>
</body>
</html>