Common tags for HTML basic video Tutorials
Web page Some common tags
Original code rendering results
( represents a constant line of blank)
< <
> >
& &
" "
in HTML comments
<!-11css.com-->
1.<b>...</b> Coarse appearance of bold body,
2.<i>...</i> Oblique
3.<s>...</s> Delete
4.<u>...</u> Next row
5.<tt>...</tt> equal width,
6.<sub>...</sub> subscript
7.<sup>...</sup> superscript
<strong>...</strong> strengthen the tone (bold) when the search engine looks, it will find that the contents of this tag is the most important. and b is only the form of the strong thick.
<em>...</em> strengthen the tone (tilt) emphasizes the content. This emphasis is not formal. is to let the search engine (Baidu, Google) look.
<ul><ul><ul><ul> and <li><li><li><li>
Format:
<ul>
<li>...</li>
<li>...</li>
<li>...</li>
<li>...</li>
</ul>
function:<ul> the beginning of the unordered column list.
</ul> the end of the presentation.
<li>...</li> represents a project.
Properties of <li>
Property Name Property Value Description
Type Dise solid Circle (default value)
Circle Hollow Circle
Square Solid Square
L<ol> the beginning of an ordered bar list .</ol> The end of the expression.
<li>...</li> represents a project.
<ol> Properties:
Property Name property Value Description
Type 1 means to represent
A in 1,2,3,4 to indicate that
A is represented as a representation of
A in a,b,c,d to represent a i,ii,iii to represent i indicates that the
< dl></dl> is used to create a normal list with I,II,III
< dt></dt> used to create top-level items in a list, small headings
< dd></dd> used to create the lowest-level item in the list, introduction to the small title
< dt></dt> and < dd></dd> must be placed between the < dl></dl> flag pairs.
This article is from the "Book House" blog, please be sure to keep this source http://jiefei.blog.51cto.com/6994042/1634850
Common tags for HTML basic video tutorials