HTML 5 Notes

Chapter 41: ARIAChapter 41: ARIA

Chapter 41: ARIA

role="presentation" An element whose implicit native role semantics will not be mapped to the accessibility API. <div style="float:left;">Some content on…

4 years ago
Chapter 40: Character EntitiesChapter 40: Character Entities

Chapter 40: Character Entities

Character Entities in HTML Many symbols and special characters are required while developing a web page in html, but as…

4 years ago
Chapter 39: HTML Event AttributesChapter 39: HTML Event Attributes

Chapter 39: HTML Event Attributes

HTML Form Events Events triggered by actions inside a HTML form (applies to almost all HTML elements, but is most…

4 years ago
Chapter 38: HTML 5 CacheChapter 38: HTML 5 Cache

Chapter 38: HTML 5 Cache

Basic Example of HTML5 cache this is our index.html file <!DOCTYPE html> <html manifest="index.appcache"> <body> <p>Content</p> </body> </html> then we…

4 years ago
Chapter 37: Global AttributesChapter 37: Global Attributes

Chapter 37: Global Attributes

AttributeDescriptionclassDefines one or more class names for an element. See Classes and IDs.contenteditableSets whether the content of an element can…

4 years ago
Chapter 36: TabindexChapter 36: Tabindex

Chapter 36: Tabindex

ValueMeaningnegativeelement will be focusable, but it should not be reachable via sequential keyboard navigation0element will be focusable and reachable through…

4 years ago
Chapter 35: Marking-up QuotesChapter 35: Marking-up Quotes

Chapter 35: Marking-up Quotes

Inline with <q> The q element can be used for a quote that is part of a sentence: <p>She wrote…

4 years ago
Chapter 34: Marking up computer codeChapter 34: Marking up computer code

Chapter 34: Marking up computer code

Block with <per> and <code> If the formatting (white space, new lines, indentation) of the code matters, use the pre…

4 years ago
Chapter 33: Meta InformationChapter 33: Meta Information

Chapter 33: Meta Information

Meta tags in HTML documents provide useful information about the document including a description, keywords,author, dates of modifications and around…

4 years ago
Chapter 32: CanvasChapter 32: Canvas

Chapter 32: Canvas

AttributeDescriptionheightSpecifies the canvas heightwidthSpecifies the canvas width Read More

4 years ago