vsc shortcut for html structure

Solutions on MaxInterview for vsc shortcut for html structure by the best coders in the world

showing results for - "vsc shortcut for html structure"
Malcolm
20 Jan 2019
1Just press Esclamation mark "!" plus "Enter"... HTML structure will get created
2
3<!DOCTYPE html>
4<html lang="en">
5<head>
6  <meta charset="UTF-8">
7  <meta name="viewport" content="width=device-width, initial-scale=1.0">
8  <title>Document</title>
9</head>
10<body>
11
12</body>
13</html>
14