If you're trying to achieve a specific design, consider the following suggestion:
<td colspan="4" style="font-size:7pt; font-color:red; font-weight: bold; text-align: left; padding-left: 82px;">PLEASE NOTE: SPECIFY THE ARTICLE AS DETAILED AS POSSIBLE</td>
However, if your goal is to make the table columns responsive and adapt to different screen sizes, using 'vw' instead of 'px' would be a better approach.
I advise against using inline styles like this for cleaner code. If you have the option to use an external stylesheet, consider applying a class to the element and defining the styles in the stylesheet.
HTML
<td colspan="4" class="descriptionText">PLEASE NOTE: SPECIFY THE ARTICLE AS DETAILED AS POSSIBLE</td>
CSS
.descriptionText{
font-size: 7pt;
font-color:red;
font-weight: bold;
text-align: left;
padding-left: 82px;
}
Let me know if this solution aligns with your needs.