1. Visual Studio Code 다운로드
- open in brower 플러그인 다운로드
2. 'Hello World' 출력하기
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>처음 만든 HTML</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<script src='main.js'></script>
</head>
<body>
<h1>Hello World</h1>
<!-- 주석은 ctrl + / -->
</body>
</html>
Hello World
<h1 style="color: blue;">Hello World</h1>
Hello World
<h1 style="color: blue; background-color: skyblue;">Hello World</h1>