HTML

HTML Intro

HTML Intro Quiz

HTML Intro Exercise

HTML Basics

HTML Basic Quiz

HTML Basic Exercise

HTML Advance

HTML Advance Quiz

HTML Advance Exercise

HTML Tags List

HTML Global Attributes

HTML Attributes

FAQs

Multiple Attributes html

Multiple Attributes

 

 

HTML attributes are basically used for adding additional information to the tag. It gives some extra data or information about the relative tag which helps the tag in changing its behavior. They exist in the form of name="value" pairs. HTML allows us to have multiple attributes to a single tag. This helps in improving the overall structure of the webpage and also improves the overall functionality of the web page.

 

Syntax:-

 

Its syntax is:- {attr_1_name="attr_1_value" ...}

 

Example:-

 

  • accesskey attribute (used with all tags)
  • class attribute (used with all tags)
  • title attribute (used with all tags)
  • id attribute (used with all tags)
  • style attribute (used with all tags)
  • contenteditable attribute (used with all tags)
  • translate attribute (used with all tags)
  • spellcheck attribute (used with all tags)
  • lang attribute (used with all tags)
  • tabindex attribute (used with all tags)
  • draggable attribute (used with all tags)

Code Explanation

All Tutorials related to HTML Basics

All Sections related to HTML