Readers, A css file contains " @font-face { font-family:fontname; src:url('./font.ttf') format ('truetype'); } " A php file contains: " <form action='file.php' method='post'> text: <input type='text' name='text'> <input type='submit'> </form> " Another php file: " <?php echo $_POST["text"]; ?> Please what is the correct syntax to apply the css file to the text entered by the user?