728x90
1. html 파일 생성
2. html에 html 내용채우기
3. <body> 태그에 <script> 태그 작성
4. <script> 태그에 src을 js파일로 설정 및 저장
5. html을 크롬으로 열거나 서버를 띄워 확인
1. html 파일 생성
2. html에 html 내용 채우기
자동완성이 안되는 사람은 아래 코드 복사▼
더보기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
3. <body> 태그에 <script> 태그 작성
4. <script> 태그에 src을 js파일로 설정 및 저장
5. html을 크롬으로 열거나 서버를 띄워 확인
728x90
'IT > TypeScript' 카테고리의 다른 글
[TypeScript] Literal Types (0) | 2022.09.23 |
---|---|
[TypeScript] 타입 자료형 type & readonly (0) | 2022.09.23 |
[TypeScript] 타입 확정 Narrowing & Assertion (0) | 2022.09.22 |
[TypeScript] 함수에 타입 지정 & void (0) | 2022.09.22 |
[TypeScript] TypeScript 타입 미지정 방법(union type, any, unknown) (0) | 2022.09.22 |