Home >Web Front-end >HTML Tutorial >HTML basic summary recommendations (title)
HTML: Title
Heading is defined through tags such as 4a249f0d628e2318394fd9b75b4636b1 - 4e9ee319e0fa4abc21ff286eeb145ecc.
4a249f0d628e2318394fd9b75b4636b1 defines the largest title. 4e9ee319e0fa4abc21ff286eeb145ecc Defines the smallest heading.
4a249f0d628e2318394fd9b75b4636b1This is a heading473f0a7621bec819994bb5020d29372a
c1a436a314ed609750bd7c7d319db4daThis is a heading2e9b454fa8428549ca2e64dfac4625cd
684271ed9684bde649abda8831d4d355This is a heading39528cedfa926ea0c01e69ef5b2ea9b0
Tips: The browser will automatically Add blank lines before and after. h1 serves as the main heading (the most important), followed by h2 (the next most important), then h3, and so on. Tip: By default, HTML will automatically add an extra blank line before and after block-level elements, such as paragraphs and heading elements. 4a249f0d628e2318394fd9b75b4636b1 - 4e9ee319e0fa4abc21ff286eeb145ecc The align attribute is deprecated in HTML4/5. Please use CSS instead. The title supports event attributes and global attributes
Set title alignment:
CSS syntax: efe45b0c269d71f0e0222008f96fb613
Method 1:
<!DOCTYPE html> <html> <body> <h1 style="text-align:center">This is heading 1</h1> <h2 style="text-align:left">This is heading 2</h2> <h3 style="text-align:right">This is heading 3</h3> <h4 style="text-align:justify">This is heading 4</h4> </body> </html>
Method 2:
<!DOCTYPE html> <html> <head> <style> h1 {text-align:center} h2 {text-align:left} h3 {text-align:right} </style> </head> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> </body> </html>
Property Value | Description |
left | Left aligned title (default) |
right | right aligned title |
center | center aligned title. |
justify | The title has reasonable margins. |
HTML: Horizontal Line The
231a563c997aa9e3e0ae614bd16728b0 tag creates a horizontal line in an HTML page. The
hr element can be used to separate content.
e388a4556c0f65e1904146cc1a846beeThis is a paragraph94b3e26ee717c64999d7867364b1b4a3
231a563c997aa9e3e0ae614bd16728b0
e388a4556c0f65e1904146cc1a846beeThis is a paragraph94b3e26ee717c64999d7867364b1b4a3
231a563c997aa9e3e0ae614bd16728b0
e388a4556c0f65e1904146cc1a846beeThis is a paragraph94b3e26ee717c64999d7867364b1b4a3Tip: Using horizontal lines (f32b48428a809b51f04d3228cdf461fa tags) to separate sections in an article is one way (but not the only way). HTML5 does not support the f32b48428a809b51f04d3228cdf461fa align attribute. Please use CSS instead.
In HTML 4.01, the align attribute of f32b48428a809b51f04d3228cdf461fa is deprecated. The
align attribute specifies the alignment of horizontal lines.
Note: Unless the width attribute is set to less than 100%, the align attribute will have no effect.
CSS syntax (IE and Opera): b6b08834a2c71e4c4f5c07ba37a5f4e5
CSS syntax (Firefox, Chrome, and Safari): 591a654889d2854632965e42b3cead07
CSS syntax (cross-browser): 7ddfdf383f176d5259b96af8417ef01d
noshade attribute | value | Description css syntax formatc98f903ba699f243c047ae970b8a1da0 |
align | left center right |
HTML5 is not supported. HTML 4.01 is deprecated. Specifies the alignment of the f32b48428a809b51f04d3228cdf461fa element |
noshade | noshade | HTML5 does not support it. HTML 4.01 is deprecated. Specifies that the color of the f32b48428a809b51f04d3228cdf461fa element is rendered as a solid color. |
size | pixels | HTML5 is not supported. HTML 4.01 is deprecated. Specifies the height of the f32b48428a809b51f04d3228cdf461fa element. |
wid | pixels % |
HTML5 is not supported. HTML 4.01 is deprecated. Specifies the width of the f32b48428a809b51f04d3228cdf461fa element. |
<!DOCTYPE html> <html> <body> <p>This is some text. This is some text. This is some text.</p> <hr style="width:50%;text-align:left;margin-left:0"> <p>This is some text. This is some text. This is some text.</p> </body> </html>
HTML: 注释
可以将注释插入 HTML 代码中,这样可以提高其可读性,使代码更易被人理解。浏览器会忽略注释,也不会显示它们。
注释是这样写的:
cf2a8215cfeca7c74714a9990fb8e262
注释:命令行最后的两个正斜杠(//)是 JavaScript 注释符号。这确保了 JavaScript 不会执行 --> 标签。
除了在源文档中有非常明显的作用外,许多 Web 服务器也利用注释来实现文档服务端软件特有的特性。这些服务器可以扫描文档,从传统的 HTML/XHTML 注释中找到特定的字符序列,然后再根据嵌在注释中的命令采取相应的动作。这些动作可能是简单的包括其他文件中的文本(即所谓的服务器端包含,server-inside include),也可能是复杂地执行其他命令去动态生成文档的内容。
以上就是HTML基础总结推荐(标题)的内容,更多相关内容请关注PHP中文网(www.php.cn)!