일단 VSC에서 new file을 만들어준다. 이름은 마음대로 하고, 확장자를 .html로 설정하면 html file이 생성된다. 이제 이 파일을 열고 내용에 !를 치고 enter(return)을 눌러주면 자동으로 간단한 파일이 완성된다. 여기에서 다음과 같이 완성이 되는데, 여기서 body에 원하는 내용을 넣게 되면 원하는 문구가 출력된다.
<!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>
Hellow HTML!
</body>
</html>
