<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
</head>
<body>
<h1>TOPICS</h1>
<div class="date">2018/08/06</div>
<div class="news">다리 꼬는 것만큼 관절에 안 좋은 사소한 습관</div>
<br>
<div class="date">2018/08/06</div>
<div class="news">사무실에서 하루종일 일을 하다 보면 매번 바른 자세를 유지하기는 힘들다. 하지만 나쁜 자세는 우리 관절에 악영향을 미쳐 바른 자세로 습관을 들이는 게 중요하다. 관절에 안 좋은 습관은 뭐가 있을까?</div>
<script type="text/javascript">
$(function () {
$(".date, .news").css("background-color", "#ffcc66");
});
</script>
</body>
</html>