1/30
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
The root element that contains the entire HTML document. Include lang="en" to identify the page language
Contains information about the webpage rather than the visible page content. Used for things such as the page title and external resources
Defines the webpage title shown in the browser tab. It belongs inside the head element
Contains all visible webpage content including headings, paragraphs, navigation, images and articles
Contains introductory content for a webpage, section or article such as a heading, logo or navigation
Contains a major group of navigation links. Each link needs href="" to specify its destination
Contains the main unique content of the webpage. A page should normally have one main element
Contains concluding or supporting information such as copyright, contact information or related information
Groups content that belongs to one clear topic or theme. It will usually have its own heading
Contains content that can make sense independently such as a news story, blog post, review or event listing
Contains related but secondary information that is not essential to the main content such as related links or extra information
Contains a list of actions or commands rather than normal site navigation. It commonly contains list items and buttons
Defines headings and creates the hierarchy of a page. h1 is the main heading and h2 through h6 are increasingly deeper levels. Choose the level based on meaning rather than text size
Defines a paragraph of text. Use it for actual paragraph content rather than spacing or layout
Creates a hyperlink to another page, website or resource. href="" is needed to specify the destination
Displays an image. src="" is needed to specify the image file and alt="" is needed to provide appropriate alternative text for accessibility
Groups media such as an image, diagram or illustration with related content such as a caption
Provides a caption for content inside a figure element. It must be placed inside the figure it describes
Embeds video content. Add controls when the user needs playback controls. Video files can be provided using source elements
Specifies a media file for an element such as video. src="" specifies the file and type="" identifies the media format
Creates an unordered list. Use it when the order of the items does not matter. It contains li elements
Creates an ordered list. Use it when sequence, ranking or order matters. It contains li elements
Defines an individual item inside an ordered list, unordered list or menu
Represents information organised meaningfully into rows and columns. Use it for tabular data rather than page layout
Provides a title or description for a table. It belongs directly inside the table element
Represents an extended quotation from another source
Identifies the title of a creative work such as a book, film, artwork or publication. It does not simply identify the person who said a quotation
Creates a control that performs an action. Use a button when something happens rather than when navigating to another page. type="button" can specify a normal button action
Creates content that the user can expand or collapse. It is normally used with a summary element that provides the visible label
Connects the HTML document to an external resource and normally belongs inside the head. rel="" describes the relationship and href="" specifies the resource location
Contains CSS written directly inside an HTML document and normally belongs inside the head. Do not use this in the HTML Sprint test because styling is not permitted