Okay... by menu, do you mean navigation? This code will do:
Code:
<strong>Number 1</strong>
<ul>
<li>Option 1</li>
<li>Option 2</li>
<li>Option 3</li>
<li>Option 4</li>
<li>Option 5</li>
</ul>
Just do that with the amount of menus you need. If you're doing multiple pages, I'd suggest putting it in a navigation.php file, then including it on the page:
PHP Code:
<?php include("navigation.php"); ?>
EDIT: Just to give you an idea of what the page might be like (providing I've understood your questions xD):
Code:
<html>
<head>
<title>Test Page</title>
</head>
<body>
<p>Lorem ipsum dolor, et cetera.</p>
<div id="navigation">
<?php include("navigation.php"); ?>
</div>
</body>
</html>