search

HTML Fonts Styles

Sep 04, 2024 pm 04:14 PM
htmlhtml5HTML TutorialHTML PropertiesHTML tags

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 tag is used to set all the text which is present on your website or inside the

element to the same size, color, and face.  The font tag consists of three attributes: face color and size, which again forms a critical component of the different font styles present inside the website.

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,



<title>Setting Basic Font Size</title>


<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>

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"></font></font>

Example,



<title>Relative Font Size</title>


<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>

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,



<title>Font Face</title>


<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 face="Bedrock" size="5">Bedrock<br>

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"></font></font>

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,



<title>Setting Font Color</title>


<font color="#FF00FF">This text is in pink</font><br>
<font color="red">This text is red</font>


<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,



<title>Setting Basefont Color</title>


<basefont face="arial, verdana, sans-serif" size="2" color="#ff0000">
<p>This is the page's default font.</p>
<h2 id="Example-of-the-lt-basefont-gt-Element">Example of the <basefont> Element</h2>

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!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Are the HTML tags and elements the same thing?Are the HTML tags and elements the same thing?Apr 28, 2025 pm 05:44 PM

The article explains that HTML tags are syntax markers used to define elements, while elements are complete units including tags and content. They work together to structure webpages.Character count: 159

What is the significance of <head> and <body> tag in HTML?What is the significance of <head> and <body> tag in HTML?Apr 28, 2025 pm 05:43 PM

The article discusses the roles of <head> and <body> tags in HTML, their impact on user experience, and SEO implications. Proper structuring enhances website functionality and search engine optimization.

What is the difference between <strong>, <b> tags and <em>, <i> tags?What is the difference between <strong>, <b> tags and <em>, <i> tags?Apr 28, 2025 pm 05:42 PM

The article discusses the differences between HTML tags , , , and , focusing on their semantic vs. presentational uses and their impact on SEO and accessibility.

Please explain how to indicate the character set being used by a document in HTML?Please explain how to indicate the character set being used by a document in HTML?Apr 28, 2025 pm 05:41 PM

Article discusses specifying character encoding in HTML, focusing on UTF-8. Main issue: ensuring correct display of text, preventing garbled characters, and enhancing SEO and accessibility.

What are the various formatting tags in HTML?What are the various formatting tags in HTML?Apr 28, 2025 pm 05:39 PM

The article discusses various HTML formatting tags used for structuring and styling web content, emphasizing their effects on text appearance and the importance of semantic tags for accessibility and SEO.

What is the difference between the 'id' attribute and the 'class' attribute of HTML elements?What is the difference between the 'id' attribute and the 'class' attribute of HTML elements?Apr 28, 2025 pm 05:39 PM

The article discusses the differences between HTML's 'id' and 'class' attributes, focusing on their uniqueness, purpose, CSS syntax, and specificity. It explains how their use impacts webpage styling and functionality, and provides best practices for

What is the 'class' attribute in HTML?What is the 'class' attribute in HTML?Apr 28, 2025 pm 05:37 PM

The article explains the HTML 'class' attribute's role in grouping elements for styling and JavaScript manipulation, contrasting it with the unique 'id' attribute.

What are different types of lists in HTML?What are different types of lists in HTML?Apr 28, 2025 pm 05:36 PM

Article discusses HTML list types: ordered (<ol>), unordered (<ul>), and description (<dl>). Focuses on creating and styling lists to enhance website design.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software