How to use vs code HTML
First install vs code go to
https://code.visualstudio.com/
now once installed go in to it
click the x on welcome
now it should look like this
once you are their click the files icon and click the one in the corner
now type test.html
now should look like this.
Now just copy this code
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
For more avanced like with color do this one
<!DOCTYPE html>
<html>
<head>
<title>Hello World with Color</title>
</head>
<body>
<h1 style="color: blue;">Hello World</h1>
</body>
</html>
ok thats all i have for now just enguf to get started



Comments
Post a Comment