Example: Example:
Home >Web Front-end >HTML Tutorial >Summary of uncommon tags in html
Introducing a few uncommon HTML tags
##In the HTML kingdom, there are many people here. Usually we see some familiar faces, but how much do you know about those unfamiliar faces? Do you know how to use them?
0, 1a309583e26acea4f04ca31122d8c535 tag
1a309583e26acea4f04ca31122d8c535 tag appears on the first line of the HTML document. Information and description The document type is a Standard Generalized Markup Language (SGML) declaration, not an element. Syntax: 1a309583e26acea4f04ca31122d8c535
Example: 97af606f2789337de26c2ec07684d7c5
8c4a336dfc5d95587168f8e91a613df2
##1, 8a7974376be5f6c00c121222b727adb9TagThe abbreviation of a word or phrase (such as " HTML"). Usually the title attribute is also used to indicate the original word or phrase.
The abbreviation is not necessarily an abbreviation, but an abbreviation is also an abbreviation. Note: Internet Explorer does not yet support abbr. 8a7974376be5f6c00c121222b727adb9The tag is used to mark an abbreviation. Example:
fa6d61cb95279c2522fe409663b578ebHTML4f2d06a7b2d26e0ad682bc6a608fa811 is not useful for simple browsing, but it can be used if you want the text to be searchable.
Note: This element can only be placed in the body and used within the line of text.
eb37297a59d90581fe5571fb4ef859fe element allows the author to clearly identify a sequence of characters that make up an abbreviation (for example: "WWW ", "FNAC", "IRS", etc.). The ability to identify abbreviations is useful for spell checking, speech systems, and other user agent tools. Grammar: <ACRONYM
TITLE=text
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
CLASS=Style Sheet class name
STYLE=styling
ID=value
event = script
>
Example:
The BASE element specifies an explicit URL for resolving links and references to external sources, such as Images and stylesheets.
When used, the BASE element must appear within the HEAD of the document, before any reference to an external source.This element is available in HTML in Microsoft® Internet Explorer 3.0 and in script in Internet Explorer 4.0. This element will not be rendered. This element does not require a closing tag.
Description: Introducing a JAVA APPLET.
Grammar: <APPLET
ALIGN=alignment
ALT=alternate Text
ARCHIVE=compressed file
CLASS=Style Sheet class name
CODE=appletFile
CODEBASE=url
DATAFLD=colname
DATASRC=Data Source
HEIGHT=n pixels
HSPACE=n pixels
ID=value
NAME=name
SRC=url
STYLE=styling
TITLE=text
VSPACE=n pixels
WIDTH=n pixels
event = script
>
Example:
<applet code="coolnav.class" align="baseline" width="168" height="313">
<param name="Notice" value="CoolMenu2.5,CopyRight (c) 1999 SourceTec Software Co. Ltd, Registered">
<param name="ApStyle" value="004080,ff8c8c,,1,0,0,,13,5,004080,1,Loading image ...">
...
</applet>
5、893424a0277609375af4e5027d12e09e Tag
893424a0277609375af4e5027d12e09eThe tag is used to display the table title. Its function is to mark a title column for the table, just like adding a ruled column above the table. Of course, it can also be placed below, which is usually used to store the title of the form.
Grammar:
<CAPTION
ALIGN=BOTTOM | CENTER | LEFT | RIGHT | TOP
VALIGN=BOTTOM | TOP
CLASS=Style Sheet class name
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=styling
TITLE=text content
event = script
>
Example:
<TABLE border=1><CAPTION VALIGN=BOTTOM>This caption will appear below the table.
</CAPTION><TR>< TD>Here</TD>is the<TD>table.</TD></TR></TABLE>
The <COMMENT
ID=value
LANG=language
TITLE=text content
>
44f298327e7641830012b5efc6625003 tag is used to indicate deleted text, usually displayed as having Underlined text. Grammar:
<DEL CLASS=Style Sheet class name ID=value LANG=language LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS STYLE=styling TITLE=text content event = script >
Example:
This sentence a7365087f53755f2a617010cd88cd5d4is no longer availablea0b030b69ae3415fedd7c5f87eb7eab1
This sentence is no longer available.
##8、22a3afa6929a2c87025fe3045a234971Tag
Syntax:<DIR
CLASS=Style Sheet class name
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=styling
TITLE=text content
event = script
>
Example:
<DIR> <LI>item 1 <LI>item 2 <LI>item 3 <LI>item 4 </DIR>
9、372b1cd7df2c657352d7d9709fd11115标签
372b1cd7df2c657352d7d9709fd11115元素帮助表单设计者技术性地把控件成组.成组控件使用户更容易明白它们的意图,同时也可以帮助可视用户代理器和面向语音的语音导航用户代理器.这些元素的适当使用使得有残疾的人们更易于操作.
语法:
<FIELDSET ALIGN=alignment CLASS=Style Sheet class name ID=value LANG=language LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS STYLE=styling TITLE=text content event = script >
例子:
<FIELDSET ID="fld1" STYLE="width:250"> <LEGEND ALIGN="left">Choose a topic</LEGEND> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="200"> <TR> <TD><LABEL FOR="radEducation">Education</LABEL></TD> <TD><INPUT TYPE="radio" NAME="topic" VALUE="Education" ID="radEducation"></TD> <TD><LABEL FOR="radInternet">Internet </LABEL></TD> <TD><INPUT TYPE="radio" NAME="topic" VALUE="Internet" ID="radInternet"></TD> </TR> ... </TABLE> </FIELDSET>
10、3e366e781d266a7cfb208f01a0fb3706标签
3e366e781d266a7cfb208f01a0fb3706标签用于生成单列式菜单列表。
语法:
<MENU CLASS=classname ID=value LANG=language STYLE=css1-properties TITLE=text event = script >
例子:
<MENU> <LI>First item in the list. <LI>Second item in the list. <LI>Third item in the list. </MENU>
The above is the detailed content of Summary of uncommon tags in html. For more information, please follow other related articles on the PHP Chinese website!