HTML basic summary recommendation (title)

HTML basic summary recommendation (title)

HTML: Title

Heading is defined by tags such as <h1> - <h6>.

<h1> defines the largest heading. <h6> defines the smallest heading.
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>

Tip: Browsers will automatically add blank lines before and after the title. h1 is used as the main heading (the most important), followed by h2 (the next most important), followed by h3, and so on. Tip: By default, HTML automatically adds an extra blank line before and after block-level elements, such as paragraphs and headings. The align attribute of <h1> - <h6> is deprecated in HTML4/5. Please use CSS instead. Title supports event attributes and global attributes

Set title alignment:

CSS syntax: <h1 style="text-align:right">

Method 1:

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE html >   
  2. < html >   
  3. < body >   
  4. < h1   style = "text-align:center" > This is heading 1 </ h1 >   
  5. < h2   style = "text-align:left" > This is heading 2 </ h2 >   
  6. < h3   style = "text-align:right" > This is heading 3 </ h3 >   
  7. < h4   style = "text-align:justify" > This is heading 4 </ h4 >   
  8. </ body >   
  9. </ html >   

Method 2:

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE html >   
  2. < html >   
  3. < head >   
  4. < style >   
  5. h1 {text-align:center}
  6. h2 {text-align:left}
  7. h3 {text-align:right}
  8. </ style >   
  9. </ head >   
  10.   
  11. < body >   
  12. < h1 > This is heading 1 </ h1 >   
  13. < h2 > This is heading 2 </ h2 >   
  14. < h3 > This is heading 3 </ h3 >   
  15. </ body >   
  16. </ html >   
屬性值 描述
left 左對齊標題(默認值)。
right 右對齊標題。
center 居中對齊標題。
justify 標題有合理的邊距。

HTML: Horizontal Rule

The <hr /> tag creates a horizontal rule in an HTML page.

The hr element can be used to separate content.

<p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>
<hr />

<p>This is a paragraph</p>Tip: Using horizontal rules (<hr> tags) to separate sections in an article is one way (but not the only way). HTML5 does not support the <hr> align attribute. Please use CSS instead.

The align attribute of the <hr> element is deprecated in HTML 4.01.

The align attribute specifies the alignment of the horizontal line.

Note: The align attribute has no effect unless the width attribute is set to less than 100%.

CSS syntax (IE and Opera): <hr style="text-align:right">

CSS syntax (Firefox, Chrome, and Safari): <hr style="margin-right:0">

CSS syntax (cross-browser): <hr style="text-align:right;margin-right:0">

屬性 描述 css語法格式 <h style=width:"50%"> 
align left
center
right
HTML5 不支持。HTML 4.01 已廢棄。 規定 <hr> 元素的對齊方式
noshade noshade HTML5 不支持。HTML 4.01 已廢棄。 規定 <hr> 元素的顏色呈現為純色。
size pixels HTML5 不支持。HTML 4.01 已廢棄。 規定 <hr> 元素的高度。
width pixels
%
HTML5 不支持。HTML 4.01 已廢棄。 規定 <hr> 元素的寬度。
XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE html >   
  2. < html >   
  3. < body >   
  4. < p > This is some text. This is some text. This is some text. </ p >   
  5. < hr   style = "width:50%;text-align:left;margin-left:0" >   
  6. < p > This is some text. This is some text. This is some text. </ p >   
  7. </ body >   
  8. </ html >   

HTML: Comments

Comments can be inserted into HTML code to improve its readability and make the code easier to understand. Browsers ignore comments and do not display them.

The comment reads:

<!-- This is a comment -->

Note: The two forward slashes (//) at the end of the command line are JavaScript comment symbols. This ensures that JavaScript does not execute within the --> tag.

Besides their very obvious role in source documents, many Web servers also make use of comments to implement features specific to document server software. These servers can scan documents, find specific character sequences in traditional HTML/XHTML comments, and then take appropriate actions based on the commands embedded in the comments. These actions may be as simple as including text from other files (so-called server-inside includes), or as complex as executing other commands to dynamically generate the content of the document.

The above HTML basic summary recommendation (title) is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

Original URL: http://www.cnblogs.com/sxtywjx/p/5665044.html

<<:  A detailed introduction to the netstat command in Linux

>>:  CSS implements various loading effects with parsing process

Recommend

How to fix the footer at the bottom of the page (multiple methods)

As a front-end Web engineer, you must have encoun...

Interpretation of Vue component registration method

Table of contents Overview 1. Global Registration...

How to open a page in an iframe

Solution: Just set the link's target attribute...

MySQL permission control details analysis

Table of contents 1. Global level 2. Database lev...

Detailed explanation of Vue router routing guard

Table of contents 1. Global beforeEach 1. Global ...

Summary of several key points about mysql init_connect

The role of init_connect init_connect is usually ...

What is TypeScript?

Table of contents 1. JavaScript issues 2. Advanta...

How to use VIM editor in Linux

As a powerful editor with rich options, Vim is lo...

How to build a Vue3 desktop application

In this article, we will look at how to develop a...

Introduction to scheduled tasks in Linux system

Table of contents 1. Customize plan tasks 2. Sync...

Detailed explanation of software configuration using docker-compose in linux

Preface This article will share some docker-compo...