<!DOCTYPE html>
<html>
<head>
<title>CSS display property</title>
<style type="text/css">
li {
display: inline;
}
</style>
</head>
<body>
<p>This example set inline elements</p>
<ul>
<li>Menu.1</li> |
<li>Menu.2</li> |
<li>Menu.3</li> |
<li>Menu.4</li>
</ul>
</body>
</html>