ETC

[바닐라 JS로 크롬 앱 만들기] 경고창 띄우기

alsruds 2023. 4. 5. 04:16

경고창을 처음 띄워봐서 신이 났습니다 (신난다)

 

경고창~! 이라기엔 hi~

 

# 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 썼어용 ♡