Answers for "how to use visual studio code for html"

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
19

visual studio code html template shortcut

First set HTML to the language
Then type:

html:5

And hit Tab

Voila, HTML Template in your favorite code editor!
Posted by: Guest on June-27-2020
0

create an html page in visual studio

<html> 
  <head>
    <title>Hello World</title> 
  </head>

  <body> 
    <h1>Hello World</h1> 
  </body>
</html>
Posted by: Guest on September-22-2020

Code answers related to "how to use visual studio code for html"

Browse Popular Code Answers by Language