I need to know how to change the font size of the output of an echo. I already have a different font colour in the code, and it's making it more complicated for a noob like me. The echo should be in black and a size like 150%. Please write out the full code for it, and if anyone could teach me how it could be done would really help me out. Thanks.
<?php
srand (microtime()*10000);
$f_contents = file ("secretnet.txt");
$line = $f_contents[array_rand ($f_contents)];
echo "<font color='black'>$line</font>";
?>