Note

노마드코더 바닐라 JS 챌린지 1일차 본문

#학습/AI&IT

노마드코더 바닐라 JS 챌린지 1일차

참잘했을까요? 2021. 8. 23. 16:20
반응형
  • Why JS ?
    • JS는 프론트엔드에서 사용하는 언어.
    • JS는 브라우저에 내장되어 있음.(브라우저의 언어 = HTML, CSS, JS)
    • 3D 모델링하기에 장점이 있음.
  • HTML
    • ! + enter = 기본 서식 생성

 

 

<!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>
반응형
Comments