
world wide web의 줄임말로 인터넷에 연결된 컴퓨터를 통해 정보를 공유할 수 공간
Web의 구조
클라이언트(고객)와 서버(직원)로 구성
프로토콜
HTTP 사용HTML : 웹 페이지 구성 요소들의 구조 (뼈대)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body></body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>login page</title>
</head>
<body>
<h1>🔒Login</h1>
<form>
ID : <input type="text" required />
<br />
PW : <input type="password" required />
<br />
<button>🔓Login</button>
</form>
</body>
</html>

CSS : 웹 페이지 구성 요소들 꾸미기 (스타일)
JS : 웹 페이지 구성 요소들에게 생명력 (동작)