The
# tag was used to set the font in HTML, but is now deprecated. Use CSS to achieve the same goal.
You can try running the following code to change the font of text in HTML -
<!DOCTYPE html> <html> <body> <h2>Tutorialspoint</h2> <p>Learning videos</p> <p style = "font-family:'Courier New'">Learning content</p> </body> </html>
The above is the detailed content of How can we set text font in HTML?. For more information, please follow other related articles on the PHP Chinese website!