<div class="container">
<p class="text-normal">Text with a normal font. This is the default value.</p>
<hr>
<p class="text-bold">Bold text. This type of text stands out more and draws attention to itself.</p>
</div>
body {
color: #333333;
}
.container {
width: 300px;
padding: 20px 30px;
background: #fbfbfb;
}
.text-normal {
font-weight: normal;
}
.text-bold {
font-weight: bold;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.