Introduction to Emmet

EMMET

·

1 min read

Emmet is a plugin for text editors that allows you to write HTML and CSS. Faster by using abbreviations that expand into full code. It can save a lot of time when writing code because you can type a few characters and then expand them into a long block of code with a single keystroke. emmet made it easy for a coder

feature of emmet

* abbreviation expansion

* code formatting

* code snippets

* customization

*cross-editor compatibility

EXPLANATION:

Emmet gives boilerplate code or simply a boilerplate section of code that is repeated in multiple places with little to no variation press the exclamation mark! Press the tab on your keyboard then the HTML boilerplate gets seen on your screen

<!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>