div태그는 섹션을 나눌 때 사용한다.
div태그는
1. 비슷한 부분끼리 그룹지어주고
2. 디자인에 맞게 레이아웃을 분리해주고,
3. 각 div에 class나 id라는 attribute를 부여하여 css 스타일을 입혀준다.
<html>
<head>
<style>
.myDiv {
border: 5px outset red;
background-color: lightblue;
text-align: center;
}
</style>
</head>
<body>
<div class="myDiv">
<h2>This is a heading in a div element</h2>
<p>This is some text in a div element.</p>
</div>
</body>
</html>