개발일지

TIL 2021.12.17

e_e 2021. 12. 17. 23:20

중간접착제 HTML

CSS랑Javascript는 파일은 연다고 실행되는게 아니다 HTML파일을 열어야 한다

! 단축어 쓰면 기본형식 생김

js 파일은 밑에 붙인다

console 열어놓는 것에 익숙해지기

 

<!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" />
<link rel="stylesheet" href="style.css" />
<title>Momentum</title>
</head>
<body>
<script src="app.js"></script>
</body>
</html>
 
첫 fuction
alert("hi");