[FREE] How to code 10 times faster with Emmet

[FREE] How to code 10 times faster with Emmet, Master the life-changing extension.

Course Description

Hello everyone and welcome to this complete Emmet course.

Emmet is a life-changing extension, it makes it much easier to code in HTML but also in JSX, Vue templates, with Svelte and all other JS frameworks.

It is available on all modern code editors, and we will use VS CODE for this course.

The goal is to use shortcuts called “abbreviations” like this: div.container>ul.list>li.item*6

Once written, all you have to do is press ‘enter‘ or ‘tab‘ to execute them.

    <div class=”container”>

        <ul class=”list”>

            <li class=”item”></li>

            <li class=”item”></li>

            <li class=”item”></li>

            <li class=”item”></li>

            <li class=”item”></li>

            <li class=”item”></li>

        </ul>

    </div>

Great, isn’t it?

There is also a whole range of actions, which make it easier to manipulate the code:
– Surround text with a, span, and tags
– Select content more easily
– Delete tags without deleting the content
– Teleport to the closing/opening tag
– And many other things

Finally, we can also use Emmet in CSS, which allows us:
– To write properties much faster: m => margin, p10 => padding: 10px, bgc#0 => background-color: #000, etc…
– To use shortcuts, just like in HTML: p10+m10+w100%+bg#0 =>

padding: 10px;

  margin: 10px;

  width: 100%;

  background: #000;

At the end of this course, we will see together how to make Emmet work in JavaScript, and in particular with all current JS Frameworks.

It is an extremely simple and quick skill to acquire, which is quite rare in web development.

See you on the other side,
Enzo.


Online Tutorials
Show full profile

Online Tutorials

Online Tutorials is a website sharing online courses, and online tutorials for free on a daily basis. You can find the best free online courses and thousands of free online courses with certificates to take your knowledge to the next level with the free courses.

We will be happy to hear your thoughts

Leave a reply

Online College Courses
Logo
Register New Account