Answers for "run html code in visual studio"

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 "run html code in visual studio"

Browse Popular Code Answers by Language