How to set the font size of html font tag? Introduction to the usage of html font tag attribute

寻∝梦
Release: 2018-09-01 13:37:15
Original
12768 people have browsed it

This article mainly introduces how to set the font size of the HTML font tag. This is actually similar to css, but the attributes of the other two font tags cannot be used and are replaced by css, but What we should introduce here, lest anyone forget, is to introduce the three attributes of the HTML font tag. Let’s take a look at this article

First of all, let’s take a look at how the html font tag sets the font size:

Only to html The font tag is a tag specially used to set fonts. Although it is rarely used in HTML5 (because CSS styles are used to set the attributes in the font tag), I personally feel that the font tag is still a very powerful tag. Yes, why do you say that? You will know after reading it.

Let us look at a code example first:

<body>
    <p>这里是<font size="50">PHP中文网</font>,欢迎大家来到PHP中文网,这里有很全面的编程课程</p>
</body>
Copy after login

In order to display it more clearly, we have now made such a large character so that everyone can see it more clearly. . The effect displayed in the browser is as follows:

How to set the font size of html font tag? Introduction to the usage of html font tag attribute

As you can see, I changed the font in the font tag to be so large, it should be very clear and intuitive.

Now we have explained the first question, changing the font size. (Want to see more courses on HTML programming, welcome to the PHP Chinese website)

Now let’s take a look at the usage of the html font tag attribute :

Just introduced an attribute of the html font tag that can change the font size.

Now let’s introduce the attributes of two HTML font tags

  • ##The font face attribute is an attribute that can define fonts;

  • The font color attribute is an attribute that can define the font color

Let’s take a look at it one by one:

Let’s talk about the font face attribute first. Any font style you have on your computer can be used to display it.

For example, let’s take a look at the code example:

<body>
    <p>这里是<font size="50">PHP中文网</font>,欢迎大家来到<font face:"黑体">PHP中文网</font>,这里有很全面的编程课程</p>
</body>
Copy after login

This code will not display the picture. Let’s just look at the code. A font family is added above, and a boldface is written in it. It means that this code can be directly used. The text style of the line text was directly displayed in boldface. Because it really didn’t have any effect, I didn’t see the picture.

We just need to know it ourselves. If our own test fails, we can add css style. Just set font-family: "bold body" in the css style font. It is also very simple.

Now let’s talk about the second font color attribute, an attribute that defines the font color. As per the old rules, let’s look at the code examples:

<body>
    <p>这里是<font size="50">PHP中文网</font>,欢迎大家来到<font face="黑体">PHP中文网</font>,这里有很全面的<font color="red">编程课程</font></p>
</body>
Copy after login
This one added a font label in the final programming course and made it red. This effect is also very obvious. Let's display it in the browser:

How to set the font size of html font tag? Introduction to the usage of html font tag attribute

As shown in the picture, this is obvious, this is to make the font red Yes, you can actually see the black body a bit, although it’s not very obvious, but I’ve circled it for everyone to take a look at.

The HTML font tag is used less and less now. Basically, people who know CSS like to use CSS styles to define font styles, such as changing colors, but I may be feeling nostalgic. Complex, as long as it can be displayed, I will use the attributes in the font tag. No css attributes are used.

【Editor's Recommendation】

html5 How to use the loop attribute of the embed tag? Summary of attributes of embed tag!

#How does the html5draggable attribute achieve the page dragging effect? The method is summarized here!

The above is the detailed content of How to set the font size of html font tag? Introduction to the usage of html font tag attribute. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!