0
The SIZE of text
How can I adjust the size of the text accurately?
2 Antworten
+ 3
use font tag....
for example
<font size="5">your text</font>
0
Choose the tag that contains the text you want to make bigger in your css document, and then use the code below.
Example: index.html
<p> this is a test</p>
Example:style.css
P{
Font-size:50px;
}