Set font to menu in HTML and CSS
Description
The following code shows how to set font to menu.
Example
<html>
<head>
<style type='text/css'>
p#menu {<!-- ww w . jav a 2 s . c o m-->
font: menu;
}
</style>
</head>
<body>
<p id='menu'>
This is the menu font.
</p>
</body>
</html>
The code above generates the following result.