---
title: OrderedList
description: >-
Displays a numbered list of related items in a specific sequence. Use to
present step-by-step instructions, ranked items, or procedures where order
matters.
api_name: app-home
source_url:
html: >-
https://shopify.dev/docs/api/app-home/polaris-web-components/structure/orderedlist
md: >-
https://shopify.dev/docs/api/app-home/polaris-web-components/structure/orderedlist.md
---
# Ordered​List
Displays a numbered list of related items in a specific sequence. Use to present step-by-step instructions, ranked items, or procedures where order matters.
## Slots
* children
HTMLElement
The items of the OrderedList.
Only ListItems are accepted.
## ListItem
Represents a single item within an unordered or ordered list. Use only as a child of `s-unordered-list` or `s-ordered-list` components.
## Slots
* children
HTMLElement
The content of the ListItem.
### Examples
* #### Code
##### jsx
```jsx
Red shirt
Green shirt
Blue shirt
```
##### html
```html
Red shirt
Green shirt
Blue shirt
```
## Examples
Component examples
### Basic usage
Basic usage
Demonstrates a simple ordered list with three sequential steps.
Order processing steps
Shows an ordered list with multiple steps in a workflow process.
Product setup instructions
Illustrates a nested ordered list with sub-steps within main steps.
Fulfillment process
Displays a complex nested list with multiple levels of sub-steps.
### Examples
* #### Basic usage
##### Description
Demonstrates a simple ordered list with three sequential steps.
##### jsx
```jsx
Add products to your catalog
Set up payment methods
Configure shipping zones
```
##### html
```html
Add products to your catalog
Set up payment methods
Configure shipping zones
```
* #### Order processing steps
##### Description
Shows an ordered list with multiple steps in a workflow process.
##### jsx
```jsx
Review order details and customer information
Verify payment and billing address
Check inventory availability for all items
Generate fulfillment labels and packing slip
Package items and update tracking information
Send shipment confirmation to customer
```
##### html
```html
Review order details and customer information
Verify payment and billing address
Check inventory availability for all items
Generate fulfillment labels and packing slip
Package items and update tracking information
Send shipment confirmation to customer
```
* #### Product setup instructions
##### Description
Illustrates a nested ordered list with sub-steps within main steps.
##### jsx
```jsx
Create product listing with title and description
Add high-quality product images
Set SEO title and meta description
Configure pricing and inventory tracking
Set up product variants (size, color, material)
Enable inventory tracking and set stock levels
Review and publish product to storefront
```
##### html
```html
Create product listing with title and description
Add high-quality product images
Set SEO title and meta description
Configure pricing and inventory tracking
Set up product variants (size, color, material)
Enable inventory tracking and set stock levels
Review and publish product to storefront
```
* #### Fulfillment process
##### Description
Displays a complex nested list with multiple levels of sub-steps.
##### jsx
```jsx
Process payment
Verify card details
Apply discount codes
Calculate taxes
Prepare shipment
Print shipping label
Pack items securely
Update customer with tracking info
```
##### html
```html
Process payment
Verify card details
Apply discount codes
Calculate taxes
Prepare shipment
Print shipping label
Pack items securely
Update customer with tracking info
```