Example: Example:
search
HomeWeb Front-endHTML TutorialSummary of uncommon tags in html

Summary of uncommon tags in html

Aug 21, 2017 am 11:43 AM
htmlSummarizeLabel

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, tag
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:

Example:

##1, TagThe 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.
The tag is used to mark an abbreviation. Example:
HTMLDOM
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.

##2. The tag

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:

FBI



3. BASE element

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.

4. 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、

Tag


The 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>

6. tag

The tag is used the same as , but the version is older. Syntax:

<COMMENT
ID=value
LANG=language 
TITLE=text content
>

Example:

The text won't render. It will not appear in the browser.



7. tag


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 is no longer available

Displayed as:

This sentence is no longer available.


##8、

Tag

Tags are used to indicate a directory list. Each item in the list starts with
  • and should not exceed 20 characters.

    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、

    标签
    元素帮助表单设计者技术性地把控件成组.成组控件使用户更容易明白它们的意图,同时也可以帮助可视用户代理器和面向语音的语音导航用户代理器.这些元素的适当使用使得有残疾的人们更易于操作.
    语法:

    <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、

    标签
    标签用于生成单列式菜单列表。
    语法:

    <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!

    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Give an example of an HTML tag with an attribute.Give an example of an HTML tag with an attribute.May 16, 2025 am 12:02 AM

    The usage methods of HTML tags and attributes include: 1. Basic usage: Use tags such as and, and add necessary information through attributes such as src and href. 2. Advanced usage: Use data-* custom attributes to achieve complex interactions. 3. Avoid common mistakes: Make sure the property values ​​are surrounded by quotes. 4. Performance optimization: Keep it simple, use standard attributes and CSS class names to ensure that the image has alt attributes. Mastering these will improve web development skills.

    What is the difference between an HTML tag and an HTML attribute?What is the difference between an HTML tag and an HTML attribute?May 14, 2025 am 12:01 AM

    HTMLtagsdefinethestructureofawebpage,whileattributesaddfunctionalityanddetails.1)Tagslike,,andoutlinethecontent'splacement.2)Attributessuchassrc,class,andstyleenhancetagsbyspecifyingimagesources,styling,andmore,improvingfunctionalityandappearance.

    The Future of HTML: Evolution and TrendsThe Future of HTML: Evolution and TrendsMay 13, 2025 am 12:01 AM

    The future of HTML will develop in a more semantic, functional and modular direction. 1) Semanticization will make the tag describe the content more clearly, improving SEO and barrier-free access. 2) Functionalization will introduce new elements and attributes to meet user needs. 3) Modularity will support component development and improve code reusability.

    Why are HTML attributes important for web development?Why are HTML attributes important for web development?May 12, 2025 am 12:01 AM

    HTMLattributesarecrucialinwebdevelopmentforcontrollingbehavior,appearance,andfunctionality.Theyenhanceinteractivity,accessibility,andSEO.Forexample,thesrcattributeintagsimpactsSEO,whileonclickintagsaddsinteractivity.Touseattributeseffectively:1)Usese

    What is the purpose of the alt attribute? Why is it important?What is the purpose of the alt attribute? Why is it important?May 11, 2025 am 12:01 AM

    The alt attribute is an important part of the tag in HTML and is used to provide alternative text for images. 1. When the image cannot be loaded, the text in the alt attribute will be displayed to improve the user experience. 2. Screen readers use the alt attribute to help visually impaired users understand the content of the picture. 3. Search engines index text in the alt attribute to improve the SEO ranking of web pages.

    HTML, CSS, and JavaScript: Examples and Practical ApplicationsHTML, CSS, and JavaScript: Examples and Practical ApplicationsMay 09, 2025 am 12:01 AM

    The roles of HTML, CSS and JavaScript in web development are: 1. HTML is used to build web page structure; 2. CSS is used to beautify the appearance of web pages; 3. JavaScript is used to achieve dynamic interaction. Through tags, styles and scripts, these three together build the core functions of modern web pages.

    How do you set the lang attribute on the  tag? Why is this important?How do you set the lang attribute on the tag? Why is this important?May 08, 2025 am 12:03 AM

    Setting the lang attributes of a tag is a key step in optimizing web accessibility and SEO. 1) Set the lang attribute in the tag, such as. 2) In multilingual content, set lang attributes for different language parts, such as. 3) Use language codes that comply with ISO639-1 standards, such as "en", "fr", "zh", etc. Correctly setting the lang attribute can improve the accessibility of web pages and search engine rankings.

    What is the purpose of HTML attributes?What is the purpose of HTML attributes?May 07, 2025 am 12:01 AM

    HTMLattributesareessentialforenhancingwebelements'functionalityandappearance.Theyaddinformationtodefinebehavior,appearance,andinteraction,makingwebsitesinteractive,responsive,andvisuallyappealing.Attributeslikesrc,href,class,type,anddisabledtransform

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    Video Face Swap

    Video Face Swap

    Swap faces in any video effortlessly with our completely free AI face swap tool!

    Hot Article

    Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Nordhold: Fusion System, Explained
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Clair Obscur: Expedition 33 - How To Get Perfect Chroma Catalysts
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Safe Exam Browser

    Safe Exam Browser

    Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

    SublimeText3 English version

    SublimeText3 English version

    Recommended: Win version, supports code prompts!

    MinGW - Minimalist GNU for Windows

    MinGW - Minimalist GNU for Windows

    This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

    mPDF

    mPDF

    mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools