Web Development/JavaScript

1. JavaScript 실습을 위한 Sublime Text 설치하기

seongduck 2022. 9. 5. 21:54
 

Download - Sublime Text

Sublime Text 4 has been released, and contains significant improvements over this version. Sublime Text may be downloaded and evaluated for free, however a license must be purchased for continued use. There is currently no enforced time limit for the evalu

www.sublimetext.com

 

사이드바를 생성하자.

위 상단에 [View] - [Side bar] - [Hide Side Bar]를 선택해서 이와같이 만들어준다.

 

그 이후 [File] - [New File]을 눌러 원하는 이름을 작성하고 마지막에 .html을 만들어주고 저장한다.

 

<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>
<body>

</body>
</html>

[html]을 쓰고 Tab을 누르면 이와같이 틀이 만들어진다.