- Computer Using
- Windows
- Browser
- How-To
- Microsoft Office
- MS Word
- MS Excel
- MS Outlook
- MS PowerPoint
- Graphic / Design
- Photoshop
- Illustrator
- Server & Network
- Computer Networking
- Internet
- Windows Server
- Web Development
- HTML
- Javascript
- CSS
- ASP.NET
- PHP
- Animation
- Flash
- Silverlight
- Database
- Database System
- SQL Server
- T-SQL
- XML
- XML
Changing Fonts
The <font> tag in HTML is deprecated. It is supposed to be removed in a future version of HTML.
Even if a lot of people are using it, you should try to avoid it, and use styles instead.
With HTML code like this, you can specify both the size and the type of the browser output.
Write HTML Code
1. <html> 2. <head> 3. <title>Format Font</title> 4. </head> 5. <body> 6. <h1>Font tage</h1> 7. <font face="Verdana" size="12" color="blue">This is my custom font</font> 8. </body> 9. </html>
Explain
<font> we use font tag to change like font name, font size, font color, etc.
face attribute use to change font name
size attribute use to set size to font
color attribute use to change color of font

