Set font to message-box in HTML and CSS

Description

The following code shows how to set font to message-box.

Example


<html>
<head>
<!-- ww  w .j a va 2 s .com-->
<style type='text/css'>
p#message-box {
font: message-box;
}
</style>
</head>
<body>
<p id='message-box'>
This is the message-box font.
</p>
</body>
</html>

Click to view the demo

The code above generates the following result.

Set font to message-box in HTML and CSS
Home »
  HTML CSS Tutorial »
    Text »
      Font
HTML CSS Tutorial Font
Set font to caption in HTML and CSS
Set font to icon in HTML and CSS
Set font to menu in HTML and CSS
Set font to message-box in HTML and CSS
Set font to small-caption in HTML and CSS
Set font to status-bar in HTML and CSS