웹페이지를 꾸며주기 위해서는 css의 적용이 필요한데 누가 대상인지 지정하는 것이 필요하다.
<html>
<head>
<title>Document</title>
<style>
body {
background-color: black;
}
</style>
</head>
<body>
<div>
<div>
<h1>mypage</h1>
</div>
<p>text: <input type="text" /></p>
<button>button</button>
</div>
</body>
</html>
<html>
<head>
<title>Document</title>
<style>
.wrap {
background-color: black;
}
.mytitle {
background-color: green;
}
</style>
</head>
<body>
<div class="wrap">
<div class="mytitle">
<h1>mypage</h1>
</div>
<p>text: <input type="text" /></p>
<button>button</button>
</div>
</body>
</html>
<html>
<head>
<title>Document</title>
<style>
.mytitle > button {
background-color: green;
}
</style>
</head>
<body>
<div class="wrap">
<div class="mytitle">
<button>button</button>
</div>
</div>
</body>
</html>
<html>
<head>
<title>Document</title>
<style>
* {
font-family: "Noto Sans KR", sans-serif;
}
</style>
</head>
<body>
<div>
<div>
<h1>mypage</h1>
</div>
<p>text: <input type="text" /></p>
<button>button</button>
</div>
</body>
</html>