HTML Emmet Shortcuts
Speed Coding with html emmet shortcuts ! creates the entire html template outline belowThat's right just the exclamation mark -- ! <!DOCTYPE html>
<html lang="en">
<head> <meta charset="UTF-8"> <title>Document</title>
</head>
<body> </body>
</html> link{tab} then gets you this additional <!DOCTYPE html>
<html lang="en">
<head> <meta charset="UTF-8">...
Read More