Skip to content

Instantly share code, notes, and snippets.

@sohelrana820
Created March 16, 2013 21:08
Show Gist options
  • Save sohelrana820/5178339 to your computer and use it in GitHub Desktop.
Save sohelrana820/5178339 to your computer and use it in GitHub Desktop.
LESS CSS Practice
<!DOCTYPE html>
<html>
<head>
<title>LESS Practice</title>
<link rel="stylesheet/less" type="text/css" href="styles.less" />
<script src="less.js" type="text/javascript"></script>
</head>
<body>
<h2 class="h2">Hello World</h2>
</body>
</html>
@color : red;
.h2{
color: @color
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment