<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>DOM</title>
<style>
.box {
width: 100px;
height: 30px;
background-color: #ddd;
}
.red {
background-color: red;
}
</style>
</head>
<body>
<div>
<input type="text" class="txt" value="hello" />
<button class="text-btn">TEXT 넣기</button>
<br />
<button class="add-red">빨간색으로</button>
<button class="add-btn">추가</button>
<button class="delete-btn">삭제</button>
<button class="reset-btn">초기화</button>
<button class="toggle-btn">보이기,숨기기 토글</button>
<button class="image-btn">이미지</button>
</div>
<div class="box"></div>
</body>
</html>
<!-- 결과 -->
<div class="box red"></div>
<!-- 결과 -->
<div class="box red"></div>
<div class="box red"></div>
<!-- 결과 -->
<div class="box">hello</div>