I'm new to Stackoverflow, Just want to build simple CSS navigation menu. How can I align these items from left to right and can make sub-items on mouse focus?
<html>
<head>
<title>Test App</title>
<style>
li{
list-style:none;
}
ul{
background-color: green;
}
</style>
</head>
<body>
<ul>
<li>
George
</li>
<li>
Belly
</li>
<li>
Mac
</li>
</ul>
</body>
</html>