search
HomeWeb Front-endH5 TutorialSummary of common HTML attribute knowledge points

Summary of common HTML attribute knowledge points

Apr 19, 2018 pm 05:41 PM
htmlSummarizeKnowledge points

This time I will bring you a summary of common HTML attribute knowledge points. What are the precautions when using common HTML attributes? The following is a practical case, let’s take a look.

In HTML, attributes are also more important for the entire HTML content. So how much do you know about HTML attributes? What are the attributes of HTML? The following article will give you a detailed introduction to the properties of HTML.

Definition:

HTML attributes: additional information provided by HTML elements

Simple understanding of HTML attributes:

1.HTML elements can set attributes

2. Attributes can add additional information to elements

3. General description and start tag of attributes

4. Attributes always appear in the form of names or value pairs, for example: name: "value"

Simple example to understand attributes:

a link

HTML links are defined by the tag, and the link's address is specified in the href attribute.

HTML common reference attribute values:

Property values ​​should always be enclosed in quotes.

Double quotes are the most commonly used, but there is no problem using single quotes.

Note: In some individual cases, such as the attribute value itself contains double quotes, you must use single quotes, for example: name='John "ShotGun" Nelson'

HTML Tip: Use lowercase attributes

Properties and property values ​​are not case-sensitive.

However, the World Wide Web Consortium recommends lowercase attributes/attribute values ​​in its HTML 4 recommendations.

Newer versions of (X)HTML require lowercase attributes.

HTML Attributes Reference Manual

Label describe
Define comments
Define document type
Define hypertext links
Define abbreviation
The definition only takes the first letter of the abbreviation, and does not support HTML5
Defines the contact information for the document author or owner
Deprecated in HTML5. Define embedded applets.
Define the area inside the image map
(New)
Define an article area
Define the sidebar content of the page
Define audio content
Define text bold
Defines the default address or default target for all links in the page.
HTML5 is not supported and deprecated. Define the default font, color, or size for text on the page.
(New) Allows you to set a piece of text independent of the text direction setting of its parent element.
Define text direction
Define large text, HTML5 does not support
Define long references
Define the body of the document

Define newline
Define a click button
(New) To define graphics, such as charts and other images, labels are just graphics containers and you must use scripts to draw the graphics
Define table title
HTML5 is not supported and deprecated. Define centered text.
Define citation
Define computer code text
Define attribute values ​​for one or more columns in the table
Define column groups in the table for formatting
(New) Define command buttons, such as radio buttons, checkboxes or buttons
(New) Define a list of options. Use this element in conjunction with an input element to define the possible values ​​of the input.
Define the description of the item in the definition list
Define deleted text
(New)
Details used to describe a document or part of a document
Definition definition project
(New) Define dialog boxes, such as prompt boxes
HTML5 is not supported and deprecated. Define directory listing.

Define sections in the document
Definition list details
Define items in list
Define emphasis text
(New) Define embedded content, such as plug-ins.
Define the border around elements in the form
(New)
Define the title of the
element
(New)
Specify individual stream content (images, charts, photos, code, etc.).
HTML5 is not supported and deprecated. Define the font, size and color of the text.
(New)
Defines the footer of a section or document.
Form that defines the HTML document
Define the window or frame of the frameset
Define frameset

to

Define HTML title
Define information about the document
(New)
Defines the header area of ​​the document

Define horizontal line
Define HTML document
Define italics
Define inline frames
Summary of common HTML attribute knowledge points Define image
Define input controls
Definition of inserted text
Define keyboard text
(New) Specifies the key pair generator field to use on the form.
Define the annotation of the input element
Defines the title of the fieldset element.
  • Define the items of the list
    Define the relationship between documents and external resources
    Define image mapping
    (New) Defines text with tokens. Please use the tag when you need to highlight text.
    Deprecated. Define menu list.
    Defines meta-information about the HTML document.
    (New) Define weights and measures. Use only for measurements with known maximum and minimum values.
    Define the section of the navigation link
    Define alternative content for users who don't support the framework. HTML5 is not supported
    Define alternative content for users who do not support client-side scripting.
    Define embedded objects
    Define an ordered list.
    Defines a combination of related options in a selection list.
    Define the options in the selection list.
    (New) Define different types of output, such as script output.

    Define paragraph.
    Define the parameters of the object.
     
    Define preformatted text.
    (New) Define the running progress (process).
    Define short quotes.
    (New) The tag is used in Ruby comments to define what is displayed by browsers that do not support Ruby elements.
    (New) tag defines the interpretation or pronunciation of a character (Chinese pinyin or character).
    (New) tag defines ruby ​​comments (Chinese pinyin or characters).
    Deprecated. Defines strikethrough text.
    Define computer code samples.
    <script> </script> Define client script.
    (New)
    The
    tag defines a section (section, section) in the document. Such as chapters, headers, footers, or other parts of the document.
    Define a selection list (Drop-down list).
    Define small text.
    (New) The tag defines media resources for media elements such as
    Define sections in the document.
    HTML5 is not supported and deprecated. Defines strikethrough text.
    Define emphasis text.
    Define the style information of the document.
    Define subscript text.
    (New) The tag contains the title of the details element, which is used to describe detailed information about the document or document fragment.
    Define superscript text.
    Define the table.
    Define the main content in the table.
    Define the cells in the table.
    Define a multi-line text input control.
    Define the content of table notes (footnotes) in the table.
    Define the header cell in the table.
    Define header content in the table.
    Define the date or time, or both.
    Defines the title of the document.
    Define the rows in the table.
    (New) The tag specifies an external text track for media such as a video element.
    Define typewriter text.
    Deprecated. Defines underlined text.
    Define an unordered list.
    Defines the variable portion of the text.
    The
    (New) Specifies where in the text it is appropriate to add line breaks.

    Global properties

    appears.
    Attributes describe
    accesskey Sets the keyboard shortcut for accessing an element.
    class Specifies the classname of the element
    contenteditable(New) Specifies whether the element's content can be edited.
    contextmenu(New) Specifies an element's context menu. When the user right-clicks the element, the context menu
    data-*(New) Used to store custom data for the page
    dir Sets the text direction of the content within the element.
    draggable(New) Specify whether an element can be dragged
    dropzone(New) Specify whether data will be copied, moved, linked, or deleted
    hidden(New) The hidden attribute specifies that the element is hidden.
    id Specifies the unique id of the element
    lang Sets the language code for the content within the element.
    spellcheck(New) Detect if an element is misspelled
    style Specify the inline style of the element
    tabindex Sets the tab order of elements.
    title Specifies additional information for the element (can be displayed in a tooltip)
    translate(New) Specifies whether an element's value needs to be translated when the page loads

    # I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

    Recommended reading:

    H5 C3 JS to achieve floor jumping special effects

    Usage of H5 link

    The above is the detailed content of Summary of common HTML attribute knowledge points. 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
    Deconstructing H5 Code: Tags, Elements, and AttributesDeconstructing H5 Code: Tags, Elements, and AttributesApr 18, 2025 am 12:06 AM

    HTML5 code consists of tags, elements and attributes: 1. The tag defines the content type and is surrounded by angle brackets, such as. 2. Elements are composed of start tags, contents and end tags, such as contents. 3. Attributes define key-value pairs in the start tag, enhance functions, such as. These are the basic units for building web structure.

    Understanding H5 Code: The Fundamentals of HTML5Understanding H5 Code: The Fundamentals of HTML5Apr 17, 2025 am 12:08 AM

    HTML5 is a key technology for building modern web pages, providing many new elements and features. 1. HTML5 introduces semantic elements such as, , etc., which enhances web page structure and SEO. 2. Support multimedia elements and embed media without plug-ins. 3. Forms enhance new input types and verification properties, simplifying the verification process. 4. Offer offline and local storage functions to improve web page performance and user experience.

    H5 Code: Best Practices for Web DevelopersH5 Code: Best Practices for Web DevelopersApr 16, 2025 am 12:14 AM

    Best practices for H5 code include: 1. Use correct DOCTYPE declarations and character encoding; 2. Use semantic tags; 3. Reduce HTTP requests; 4. Use asynchronous loading; 5. Optimize images. These practices can improve the efficiency, maintainability and user experience of web pages.

    H5: The Evolution of Web Standards and TechnologiesH5: The Evolution of Web Standards and TechnologiesApr 15, 2025 am 12:12 AM

    Web standards and technologies have evolved from HTML4, CSS2 and simple JavaScript to date and have undergone significant developments. 1) HTML5 introduces APIs such as Canvas and WebStorage, which enhances the complexity and interactivity of web applications. 2) CSS3 adds animation and transition functions to make the page more effective. 3) JavaScript improves development efficiency and code readability through modern syntax of Node.js and ES6, such as arrow functions and classes. These changes have promoted the development of performance optimization and best practices of web applications.

    Is H5 a Shorthand for HTML5? Exploring the DetailsIs H5 a Shorthand for HTML5? Exploring the DetailsApr 14, 2025 am 12:05 AM

    H5 is not just the abbreviation of HTML5, it represents a wider modern web development technology ecosystem: 1. H5 includes HTML5, CSS3, JavaScript and related APIs and technologies; 2. It provides a richer, interactive and smooth user experience, and can run seamlessly on multiple devices; 3. Using the H5 technology stack, you can create responsive web pages and complex interactive functions.

    H5 and HTML5: Commonly Used Terms in Web DevelopmentH5 and HTML5: Commonly Used Terms in Web DevelopmentApr 13, 2025 am 12:01 AM

    H5 and HTML5 refer to the same thing, namely HTML5. HTML5 is the fifth version of HTML, bringing new features such as semantic tags, multimedia support, canvas and graphics, offline storage and local storage, improving the expressiveness and interactivity of web pages.

    What Does H5 Refer To? Exploring the ContextWhat Does H5 Refer To? Exploring the ContextApr 12, 2025 am 12:03 AM

    H5referstoHTML5,apivotaltechnologyinwebdevelopment.1)HTML5introducesnewelementsandAPIsforrich,dynamicwebapplications.2)Itsupportsmultimediawithoutplugins,enhancinguserexperienceacrossdevices.3)SemanticelementsimprovecontentstructureandSEO.4)H5'srespo

    H5: Tools, Frameworks, and Best PracticesH5: Tools, Frameworks, and Best PracticesApr 11, 2025 am 12:11 AM

    The tools and frameworks that need to be mastered in H5 development include Vue.js, React and Webpack. 1.Vue.js is suitable for building user interfaces and supports component development. 2.React optimizes page rendering through virtual DOM, suitable for complex applications. 3.Webpack is used for module packaging and optimize resource loading.

    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

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Best Graphic Settings
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    Will R.E.P.O. Have Crossplay?
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    WebStorm Mac version

    WebStorm Mac version

    Useful JavaScript development tools

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    SublimeText3 English version

    SublimeText3 English version

    Recommended: Win version, supports code prompts!

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.