I want to make menu using links which come horizontally rather than vertically
HTML code
<div>
<ul>
<li> <a id="ccs" href="#"> Home </a> </li>
<li> <a id="ccs" href="#"> Marketing Service </a> </li>
<li > <a id="ccs" href="#"> IT Management Service </a> </li>
<li > <a id="ccs" href="#"> Molex Portfolio </a> </li>
<li > <a id="ccs" href="#"> Contact US </a> </li>
<li > <a id="ccs" href="#"> Employment Opportunities </a> </li>
</ul>
</div>
CSS Code
#ccs{
background-color:#4CAF50;
padding:20px;
border:3px;
color:yellow;
text-align:center;
display: inline-block;
text-decoration:none;
Please Help!!!!