Web_Basic
210723
간략한 개념 정리
프로그래밍 언어(문제 해결, 명령문)가 아닌 마크업 언어(구조를 정하는 언어)
<!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">
  <title>Document</title>
  <style>
    h1 {
      background-color: #2851A3;
      color: white;
    }
  </style>
</head>
<body>
<h1>Facebook</h1>
<p>문단입니다.</p>
<script>
  window.alert('welcome!')
</script>
</body>
</html>기본 뼈대 html
배경과 글자의 색을 CSS 활용
페이지에서 alert를 위한 JS