Content"."/> Content".">

Home  >  Article  >  Web Front-end  >  What does it mean to create h4 web page?

What does it mean to create h4 web page?

anonymity
anonymityOriginal
2019-05-07 13:24:4412913browse

In web page production, h4 represents the HTML h4 tag, and there are "h1-h6" title tags in HTML. h4 is one of the level title tags. The text modified with the "h4" tag will be Appropriate thickness effect is displayed, and its syntax is such as "3f7b3decd2dcafb07b84d2d3985d9f40Content0f6dfd1e3624ce5465eb402e300e01ae".

What does it mean to create h4 web page?

There are h1~h6 title tags in HTML. They have different sizes, but the meaning and attributes are the same.
The syntax includes many web design tags.

What does it mean to create h4 web page?h tag is the title tag, and the text modified with it will be displayed with a "big, bold" effect.
h1 To h6 are six levels of title tags.
h1 is the largest, with the thickest font strokes.
h6 is the smallest, with the thinnest font strokes.

Example:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html> 
<head> 
<title>我的第一个网页- jb51.net</title> 
</head> 
<body> 
<h1>我的第一个网页- jb51.net</h1> 
<h2>这是什么</h2> 
<p>用HTML组合起来的简单网页</p> 
<h2>目的</h2> 
<p>学习HTML</p> 
</body> 
</html>

Note: The h1 tag can only be used once on a page - assuming it is the main title of the page, it should not be used multiple times. However, h2 to h6 can be used as many times as you need, but they should be used in order according to the design intent. For example, h4 should be a subheading of h3, h3 should be a subheading of h2, and so on.

The above is the detailed content of What does it mean to create h4 web page?. 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