First, the title
The HTML title (Heading) is defined by tags such as
<!--title -<H1>Title 1</H1><H2>Title 2</H2><H3>Title 3</H3><h4>Title 4</h4><h5>Title 5</h5><h6>Title 6</h6><!--paragraph -<P>Please use the title tag only for the title text. Don't use them just to produce bold text. Please use another tag or CSS instead.</P>
Results:
Title 1 Title 2 Title 3 Title 4 title 5 title 62, paragraph
The HTML paragraph is defined by the <p> tag.
<P>This is the paragraph.</P><P>This is the paragraph.</P><P>This is the paragraph.</P><P>The paragraph element is defined by the P tag.</P>
Results:
This is the paragraph.
This is the paragraph.
This is the paragraph.
The paragraph element is defined by the P tag.
<!--multiple lines of paragraphs and paragraphs with spaces -<P>This paragraph contains many rows in the source code, but the browser ignores them. </P><P>This paragraph contains many rows in the source code, but the browser ignores them. </P><P>the number of lines in a paragraph depends on the size of the browser window. If you resize the browser window, the number of lines in the paragraph is changed. </P>
Results:
This paragraph contains many rows in the source code, but the browser ignores them.
This paragraph contains many rows in the source code, but the browser ignores them.
The number of lines in a paragraph depends on the size of the browser window. If you resize the browser window, the number of lines in the paragraph is changed.
< H1 > Dawn </H1><p> spring Sleep, birds are heard everywhere. The night comes the wind and rain, the flowers fall to know how much. </p><p> Note that The browser ignores the layout in the source code (omitting extra spaces and line breaks). </ P >
Results:
Chunxiao
Spring sleep does not feel xiao, everywhere smell bird. The night comes the wind and rain, the flowers fall to know how much.
Note that the browser ignores the layout in the source code (omitting extra spaces and line breaks).
Third, the link
HTML links are defined by the <a> tag.
<href= "http://www.163.com"> This is a connection </a >
Result: This is a connection
<!-- Open link in new browser window target value set to _blank - < href= "http://www.163.com" target= "_blank"> This is a connection, Open </a> in a new window
3.1. Anchor Chain Connection
A connection within the same page, jumping from one location to another
Creating anchors
<a name= "anchor name" > Display name 1</a>
Connecting anchors
<a href= "#锚名" > Connection display name 1</a>
<href= "#a4"> connect to A4</a>< name = "A4" > A4 </a >
Four, the image
HTML images are defined by tags.
<src= "Image path" />
HTML II (Basic label)