Home > Article > Web Front-end > Several HTML basic knowledge points
For novices, a detailed basic knowledge point is necessary. This article summarizes several basic knowledge points of HTML for everyone. Friends who need it can refer to it. I hope it can help everyone.
HTML Heading (Heading) is defined through tags such as 4a249f0d628e2318394fd9b75b4636b1 - 4e9ee319e0fa4abc21ff286eeb145ecc
.
<h1>This is a heading</h1> <h2>This is a heading</h2> <h3>This is a heading</h3>
HTML paragraph is defined through the e388a4556c0f65e1904146cc1a846bee
tag.
<p>This is a paragraph.</p> <p>This is another paragraph.</p>
HTML link is defined through the 3499910bf9dac5ae3c52d5ede7383485
tag.
<a href="http://www.baidu.com">This is a link</a>
HTML images are defined through the a1f02c36ba31691bcfe87b2722de723b
tag.
<img src="w3school.jpg" width="104" height="142" />
HTML element refers to all the code from the start tag (start tag) to the end tag (end tag).
Start tag | Element content | End tag |
---|---|---|
##e388a4556c0f65e1904146cc1a846bee
| This is a paragraph94b3e26ee717c64999d7867364b1b4a3
|
|
This is a link |
5db79b134e9f6b82c0b36e0489ee08ed |
|
|
HTML Basics Tutorial
The above is the detailed content of Several HTML basic knowledge points. For more information, please follow other related articles on the PHP Chinese website!