<!DOCTYPE html>
<html lang="ko">
<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>
body {
background-color: darkslategray;
}
#container {
width: 800px;
height: 900px;
background-color: white;
margin: 0 auto;
padding: 20px
}
.dst1 {
width: 100%;
height: 100px;
background-color: darkslategray;
color: white;
margin: 30px;
margin-right: 30px;
text-align: center;
}
</style>
</head>
<body>
<div id="container">
<div class="dst1">
<h1>IT 수강생 모집</h1>
</div>
</div>
</body>
</html>