Emmet for HTML: A Beginner’s Guide to Writing Faster Markup
Let me start with a scene you’ve probably lived.
You open your code editor.You want to write a simple HTML page.
So you type:
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Hello</h1>
<p>This is a paragraph</p>
</body>
...
browser-html-css-basics.hashnode.dev5 min read