&tag(LESS);
@color: red;
#header {
color: @color;
}
h2 {
color: @color;
}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LESSのテスト</title>
<link rel="stylesheet/less" type="text/css" href="style.less">
<script src="less-1.3.1.min.js" type="text/javascript"></script>
</head>
<body>
<h2>aaaaaaaaaaaaa</h2>
</body>
</html>