<!DOCTYPE html> <html> <head> <title>Less Importing</title> <link rel="stylesheet" type="text/css" href="simple.css" /> </head> <body> <h1>Less Importing Example</h1> <h3>MAIN BENEFITS YOU GET FROM OUR COMPANY :</h3> <p class="myclass">Life Time Validity.</p> <p class="myclass1">Training by Java Professionals.</p> <p class="myclass2">Small Batches to focus on each student.</p> </body> </html>
.myclass{ color: blue; } .myclass1{ color: red; }
@import "myfile.less"; .myclass2 { color: brown; }
.myclass { color: blue; } .myclass1 { color: red; } .myclass2 { color: brown; }