VAR
Run
<html>
	<head>
		<title>The var tag</title>
	</head>
	<body>
		<h1>Example for the usage of var tag</h1>
		<p>The volume of a box is 
			<var>l</var> × 
			<var>w</var> × 
			<var>h</var>
			<br/>where 
			<var>l</var> represents the length,
			<br>
				<var>w</var> the width and 
				<br>
					<var>h</var> the height of the box.
				</p>
			</body>
		</html>