2024-10-10

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
strong {
color: blue;
}
p strong {
color: red;
}
</style>
</head>
<body>
<strong>기냥 택스트 요소</strong>
<p><strong>자손 택스트 요소</strong></p>
</body>
</html>
