경고창을 처음 띄워봐서 신이 났습니다 (신난다)
# index.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">
<!--css 파일 넣기-->
<!--
<link rel="속성값"> : rel 속성은 현재 문서와 외부 리소스 사이의 연관 관계 명시 (필수 속성)
-->
<link rel="stylesheet" href="style.css">
<title>Momentum</title>
</head>
<body>
<!--javascript 넣기-->
<script src="app.js"></script>
</body>
</html>
# app.js
alert("hi")
# style.css
body {
background-color: beige;
}
♡ VSCode 썼어용 ♡
'ETC' 카테고리의 다른 글
[ JAVA ] 팝업창으로 input 받기 (0) | 2023.09.21 |
---|---|
[바닐라 JS로 크롬 앱 만들기] LOGIN (0) | 2023.05.02 |
[바닐라 JS로 크롬 앱 만들기] JS on the Browser (0) | 2023.04.17 |
[바닐라 JS로 크롬 앱 만들기] Javascript 문법 (0) | 2023.04.06 |
^^ (0) | 2023.03.22 |