Home > Article > Web Front-end > Do you know how to set the font style of h1 in HTML? Detailed explanation on setting the style of h1 tag
This article mainly explains the style analysis of h1 tags in html. However, if you do not use css style, it can only be displayed in html4.01, so we should learn css cascading style sheets as soon as possible. Okay, okay, now let’s talk about this article.
The H tags (H1, H2, H3, etc.) in HTML are used to indicate the title hierarchy system in a page. Therefore, the Hl tag can be regarded as the title of the entire web page, the H2 tag is the subtitle, H3 is the third-level title, etc. Search engines have a little preference for keywords that appear in H tags, especially Hl tags. Let’s talk about how to use H1 tags.
First let’s look at an example:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>php中文网</title> </head> <body> <h1 align="center" style="color:red ; font-size:50px">Hello world</h1> </body> </html>
The effect is as shown in the figure:
Here is hello world Use the title h1 to express it, add the font size, center the display, and add the text color to red. This method of changing the style of tags is very common.
How to add the h1 tag? What is the difference between the h1 tag and title?
h1 tag controls the size of a piece of text ( From h1 to h6), such as
: The
tag is written in the body of the web page;. How to add h1 tags, for example; ;/p>
Multiple ways to add styles to titles:1. How to add a background color to all h1 tags in html (only Can be practiced in html4.01)
Write two or more h1 tags, and use css to add a background color to the tags. A simple code example is as follows:
<body> <h1>这是一个标题测试</h1> <h1>这是另一个标题测试</h1> <style> h1{ background: #090; } </style> </body>
Effect picture As follows:
2. Add red color to the title h1, the code is as follows:
<html> <body> <h1 align="center" style="color:red">Hello world</h1> </body> </html>
3. The code to enlarge the font of the title h1:
<html> <body> <h1 align="center" font-size:50px">Hello world</h1> </body> </html>
[Editor’s recommendation]
##How to center the th header content in the html table? A detailed introduction to the align attribute of the th header tag
The above is the detailed content of Do you know how to set the font style of h1 in HTML? Detailed explanation on setting the style of h1 tag. For more information, please follow other related articles on the PHP Chinese website!