Answers for "vs code 2019 html css snippet"

20

html skeleton shortcut vs code

type "!" (exclamation mark) and press enter in vs code.

//below code will be generated
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>
Posted by: Guest on July-18-2020
1

how to add custom snippets in emmet in visual studio code

"Console log": {
    "prefix": "clog",
    "body": "console.log('$1');",
    "description": "Log output to console"
}
Posted by: Guest on September-30-2020

Browse Popular Code Answers by Language