It helps the developer to reduce tasks by automatically performing repetitive tasks.
like closing the tags, the whole basic syntax( boilerplate code ) of HTML, and many more benefits of it for the developer.
Feature of EMMET :
1 ) Abbreviation expansion ( eg: just type " p " in VS Code and press enter EMMET will automatically make it <p>...</p> paragraph tag ).
2 ) Customization
3 ) Cross-Editor Compatibility ( EMMET is easily compatible in all editors )
BOILER-PLATE CODE OF HTML :
Just press the " ! " exclamation mark and press ENTER key .
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> </body> </html>