how to make text small html css code example
Example 1: font size css
.class {
font-size: 12px;
}
Example 2: smaller than small html
<body>
<p>This is a paragraph and <small>smaller text goes here</small></p>
</body>
.class {
font-size: 12px;
}
<body>
<p>This is a paragraph and <small>smaller text goes here</small></p>
</body>