'Is there a way to change font size of specific text insde the html table
My goal is to increase the text size of first 2 [a] tags
<table width="750" class="normal">
<tr>
<td height="35" align="center" bgcolor="#FFFFFF"><strong>
<strong>Click one of the following PDF's for more information:</strong><br>
<br>
<font size="+4px"> <a href="http://www.gpiparts.com/Rubber_Blankets/Rubber_Blankets-Order_Form.pdf" target="_blank"><strong>Online Order Form</strong></font></a> |
<font size="+4px"> <a href="http://www.gpiparts.com/Rubber_Blankets/Rubber_Blankets_Brochure_and_Order_Form.pdf" target="_blank">Literature / Order Form </font></a> |
<a href="http://www.gpiparts.com/Rubber_Blankets/Replacement_Rubber_Blanket_Install.pdf" target="_blank"><br>Installation / Repair Instructions</a>
So far I tried to increase font size in HTML but no success because html does not seems to have CSS attached to it and this html code is coded in the body of phpmyadmin table.
I would appreciate any suggestions.
Solution 1:[1]
<a style="font-size: 40px;"....
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Wai Ha Lee |
