HTML Fonts Styles
The following article, HTML Fonts Styles, provides an outline of the most commonly used font styles in HTML. HTML, popularly known as HyperText Markup Language, is one of the most essential and critical languages or scripts that is essential in creating web applications and websites. This is like the backbone of web app development, as all the tags and other features form the underlying component of it.
All the front-end development is also based on HTML scripting. This can just be used to provide markup tags, and in order to enhance the look and feel of these tags, we have another library that is very popular, CSS, which stands for Cascading Style Sheets. This can be used to implement all kinds of styles that are required by the HTML. The font and styles form the major part of the website, and in this article, we are going to provide you with a list of the majority of the HTML font styles.
HTML Font styles
Fonts play a major role in making a website more user-friendly and attract more traffic apart from increasing content readability. The font color and the font face also depend on the computer and the browser which is making its use, and the HTML tag is also used to add the style, color, size to the text on your website.
The
The tag is the most commonly used and one of the most important tags which can be used to build a good look and feel for your webpage. The text which will follow the opened tag will remain in the same manner unless and until closed by tag.
Let us look at some of the basic HTML Fonts Styles:
There are some basic features and characteristics associated with HTML font styles, and they are:
1. Setting Font Size
The content font size can be set by making use of size attributes. The accepted value of the range lies from 1, which is the smallest number, and it goes till 7, which is the largest number. The default size of any font type is 3.
Example,
<!DOCTYPE html> <html> <head> <title>Setting Basic Font Size</title> </head> <body> <font size = "1">Font size = "1"</font><br /> <font size = "2">Font size = "2"</font><br /> <font size = "3">Font size = "3"</font><br /> <font size = "4">Font size = "4"</font><br /> <font size = "5">Font size = "5"</font><br /> <font size = "6">Font size = "6"</font><br /> <font size = "7">Font size = "7"</font> </body> </html>
2. Relative Font Size
The relative font size is used to determine and specify how many sizes are larger and how many sizes are smaller than the current font size which is actually present. This can be specified like :
<font size = "+f"> or by writing <font size = "−f">
Example,
<!DOCTYPE html> <html> <head> <title>Relative Font Size</title> </head> <body> <font size = "-1">Font size = "-1"</font><br /> <font size = "+1">Font size = "+1"</font><br /> <font size = "+2">Font size = "+2"</font><br /> <font size = "+3">Font size = "+3"</font><br /> <font size = "+4">Font size = "+4"</font> </body> </html>
3. Setting Font Face
The other category after the setting of font size and relative font size is that of the setting up of font face. This forms a critical part of the attributes listed above. This can be set by using the face attribute, but it should always be kept in mind that if the user who is designated to use this font value doesn’t have this font installed in their system, they will not be able to see it. Instead, only the default font face applicable to that particular user’s computer will be visible.
Example,
<!DOCTYPE html> <html> <head> <title>Font Face</title> </head> <body> <font face = "Times New Roman" size = "5">Times New Roman</font><br /> <font face = "Verdana" size = "5">Verdana</font><br /> <font face = "Comic sans MS" size =" 5">Comic Sans MS</font><br /> <font face = "WildWest" size = "5">WildWest</font><br /> <font face = "Bedrock" size = "5">Bedrock</font><br /> </body> </html>
4. Specify Alternative Font Faces
- This is used to specify various kinds of font faces only if the user has that particular font installed on their system; otherwise, a default installed font will be visible. It is possible to mention more than one, specifically two or more than two font face alternatives by listing down the font face names, which are specifically separated by a comma.
- When the webpage gets loaded, The browser will be responsible for displaying the first-ever font, which will get generated. If none of the provided fonts is installed in the system, then the default font face, which is Times New Roman, will be displayed successfully.
Example,
<font face = "arial,helvetica"> <font face = "Lucida Calligraphy,Comic Sans MS,Lucida Console">
5. Setting Font Color
This is another attribute that forms the critical part and component of the HTML font and styles list. In this font, color is set up by making use of any color attribute; the color which is required could be required by making use of hexadecimal code and color name for the specified color.
Example,
<!DOCTYPE html> <html> <head> <title>Setting Font Color</title> </head> <body> <font color = "#FF00FF">This text is in pink</font><br /> <font color = "red">This text is red</font> </body> </html> <basefont>
6. Element
- This element is specific to HTML language and is supposed to provide the webpage with a default font size, typeface, and color for all the parts and components of the documents which are not contained inside the tag.
- The tag could be easily used to override the
settings. - This tag also makes use of color, face and size attributes which will relatively support all the font settings by providing the size of a value of +1 for one size greater or -2 for two sizes smaller.
Example,
<!DOCTYPE html> <html> <head> <title>Setting Basefont Color</title> </head> <body> <basefont face = "arial, verdana, sans-serif" size = "2" color = "#ff0000"> <p>This is the page's default font.</p> <h2>Example of the <basefont> Element</h2> </body> </html>
Conclusion
HTML font and styles are among the most critical components and features that cannot be overlooked and can give a very good shape and design to your website. When we talk about the latest javascript libraries available in the market, they contain all these and several other font and styles. For the basic HTML, this still needs to be done manually. I hope you liked our article. Stay tuned to our blog for more articles like these.
The above is the detailed content of HTML Fonts Styles. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.
