본문 바로가기
css

JavaScript의 단순 경고

by code-box 2022. 2. 17.
반응형

html 파일 작성 및 코드 작성

<!DOCTYPE html>
  <html>
   <head>
    <title>simple alert in javascript</title>
 </head>
 <body>
         <div>
           <button onclick="press()">click here</button>
   </div>
 </body>

 <style>
                div {
                      display: flex;
                      flex-direction: row;
                      justify-content: center;
                }

   button {
         border: 2px solid orange;
         background-color: orange;
         color: #fff;
         font-family: sans-serif;
   }
 </style>

 <script>
      function press() {
        let notification = alert('Congrats!');
 }
 </script>
</html>

댓글