- 1). Open the HTML file that you would like to edit in a text editor.
- 2). Navigate to the line of code that contains the text that you'd like to make larger.
- 3). Directly before the text that you'd like to make larger, type the following:
<font size = n>
"N" refers to the relative size you'd like the text to be, from 1 to 7. A font size of 3 corresponds to the size of standard HTML text, while a size of 6 or 7 corresponds to the text size of a large header. - 4). Directly after the text that you want to make larger, type </font>. This sets the font size back to the standard size of 3 for the remaining text.
So your line of code should end up looking like:
<font size = 5> Text you'd like to make larger </font>
SHARE