strong {
    font-weight: normal;
    color: red;
}
<p>건설 현장에서는 <strong>반드시 안전모를 착용하세요!</strong></p>
실제 적용된 모습
selector {
    font-weight: /* value */
}
/* 키워드 값 */
font-weight: normal;
font-weight: bold;

/* 부모 요소에 상대적인 값:
   현재 요소의 부모 요소의 글꼴 굵기를 기준으로 상대적인 키워드 값을 지정 */
font-weight: lighter; /* 부모 요소보다 가는 굵기 */
font-weight: bolder;  /* 부모 요소보다 굵은 굵기 */

/* 숫자 값 */
font-weight: 100;
font-weight: 200;
font-weight: 300;
font-weight: 400; /* normal과 같음 */
font-weight: 500;
font-weight: 600;
font-weight: 700; /* bold와 같음 */
font-weight: 800;
font-weight: 900;

/* 전역 값 */
font-weight: inherit;
font-weight: initial;
font-weight: unset;
<h4>h4</h4>
<hr>
<h5>h5</h5>
<hr>
<h6>h6</h6>
<hr>
<strong>strong</strong>
<hr>
<b>b</b>
<hr>
<table>
    <tr>
        <th>th</th>
    </tr>
</table>
실제 적용된 모습