SlideShare a Scribd company logo
1 of 168
Download to read offline
Accessible
StatesIN DESIGN SYSTEMS
What are
“states”?
The W3C defined states as:
“dynamic properties that convey
the characteristics of a user
interface component”.
I don’t know about you, but I
always find the W3C’s technical
definitions challenging to
understand.
How about we start with a
simple example… like the visited
state, which is applied to visited
links.
The state of a component can
change in response to user
actions.
For example, users can change
the state of some components to
checked, hover, focus or active
states.
And, state can change in
response to script-based
processes.
For example, a form control
could be set with an invalid state
via a script.
These different states don’t
affect the nature of the
component.
They represent additional data
associated with the component.
Looking at the
different states
We’re going to look at nine
different states.
Along the way I’ll talk about
some problems I’ve observed
while conducting user testing
sessions.
1

Unvisited
This state relates to links only.
The unvisited state is the
default state of links when they
have not yet been visited.
Unvisited link
Unvisited state on a link
Valerie:
85, retired, rarely uses
computers at all and is therefore
“technically challenged”.
Issue:
Could not identify a link as it
had “ambiguous” styling. Could
not complete a process.
Solution:
Make links look like links! (At
least within the content area of
pages or apps)
2

Visited
This states also relates to links
only.
The visited state is triggered
when a link has been visited
(and exists in the browser’s
history).
Visited link
Visited state on a link
Mark:
28, sustained a head injury from
a motor bike accident, has short
term memory issues.
Issue:
Trying to follow a multi-step
process from a single page
source. Kept losing place in
process due to lack of visited link
states.
Solution:
For links within content areas,
make sure you define visited
link states.
3
Focus
The focus state is triggered
when a component comes into
focus.
This state can be triggered via
user keyboard actions or some
sort of automated script.
This state should be applied to
any interactive element (e.g.
links, buttons, triggers, tabs,
inputs, selects, textareas).
Focus link
Focus state on a link
Judy:
65, has Cerebral palsy, cannot
use hands, uses a head-wand
and “sticky keys”.
Issue:
Trying to navigate a content-rich
news website. Lost track of
where focus was on the page due
to lack of focus states on some
components.
Solution 1:
Make sure all focusable items
have a visible focus state - either
the default focus style or a
customised focus style.
Solution 2:
Make sure the styling method
for focus states is consistent
across the site/application.
We’ll look into consistency in
more detail when we get to
“systematising states”.
4
Hover
The hover state is triggered
when a component is being
hovered over by a user's mouse
pointer.
This state can be applied to any
“clickable” element (links,
buttons, triggers).
Hover link
Hover state on a link
Judy (again):
Cerebral palsy.
Issue:
Navigating to links takes a lot of
effort. Sometimes she was not
sure that she was navigating to
an actual link.
Solution:
A hover state provides
confirmation that she is
interacting with a link.
Mark (again):
short term memory issues.
Issue:
Trying to fill in a form. Found it
hard to identify which elements
were interactive.
Solution:
I have found it beneficial for
some types of users to add hover
states to inputs, selects and
textareas.
5
Active
The active (or pressed) state is
triggered when a component is
currently being activated by the
user.
Like the hover state, this state
can be applied to any
“clickable” element (links,
buttons, triggers).
Active link
Active state on a link
Judy (again):
Cerebral palsy.
Issue:
As mentioned before, navigation
takes effort, and identifying
links can be a problem.
Solution:
As with the hover state, an active
state provides an additional
confirmation of success.
6
Disabled
The disabled state means that
the user cannot interact with the
component.
Disabled input
Disabled state on an input
Valerie (again):
Technically challenged.
Issue:
Trying to fill in a form. Kept
trying to interact with a disabled
component that had a focus
state. This led to frustration and
confusion.
Solution 1:
Where possible, do not present
disabled form components at all.
Solution 2:
If disabled components must be
presented, make sure that they
are visually identifiable as
“disabled”.
Solution 3:
Make sure disabled components
cannot receive focus.
7
Invalid
The invalid state means that the
form control contains content
that fails to validate.
Error message
Label text
!
Invalid state on an input
Pavel:
39, Deuteranopia (Red-green
colour blindness). Confuses mid-
red colours with mid-green
colours.
Issue:
Filling in a form. Colour-alone
used to define invalid form field.
Was not able to identify the field
with the issue.
Solution:
Avoid using colour-alone to
define invalid states.
8
Checked (or selected)
The checked (or selected) state
means that the component has
been checked or toggled to an
“on” state, either via the user, or
by default.
Checked radio
Unchecked radio
Checked state on a radio button
9
Checked and focussed
It is possible to have two
different states associated
with a component at the same
time - checked and focussed.
Let’s use an example of a radio
group with two options.
Before users interact with the
group, both radio buttons are in
the static state.
Choice 1
Choice 2
Static state on radio button
A radio button can be in a focus
state only.
Choice 1
Choice 2
Focus state on radio button
A radio can also be in a checked
(or selected) state only.
Choice 1
Choice 2
Checked state on radio button
However, if a radio button is in
focus and the user presses the
SPACEBAR, this radio button will
now be checked and in focus.
Choice 1
Choice 2
Checked and focus state on radio button
This is also relevant for
checkboxes and segmented
controls.
One Two
Segmented control
Valerie (again):
technically challenged.
Issue:
Unable to distinguish between
focus and checked state on a
segmented control. Assumed the
form control had been selected
when it was only in focus.
Solution:
Make sure the different states
are clearly identifiable and have
unique styles.
States and non-native
widgets
There are a range of interactive
UI components that are built
using non-native HTML - e.g.
using DIV and SPAN elements
only.
For example: date-pickers, in-
page tabs, pagination,
accordions etc.
If these non-native widgets
include some sort of interaction,
they must have relevant states
defined.
For example, an open/shut
accordion should have focus,
hover, active and open states
defined.
Item 1
Item 2
Item 3
Item 4
Static state on accordion
Item 1
Item 2
Item 3
Item 4
Hover state on accordion
Item 1
Item 2
Item 3
Item 4
Focus state on accordion
Item 1
Item 2
Item 3
Item 4
Active state on accordion
Item 1
Item 2
Item 3
Content inside accordion
panel, visible when open.
Open state on accordion
Systematising
states
Have you ever noticed a website
or application that has
inconsistent hover and focus
styles across different
components?
This can lead to a jarring
experience - especially for
keyboard-only users who
navigate via focus.
For design systems, it is
important to systematise all
component states.
This makes it easier to:
- establish consistency
- maintain existing
components
- add new components
But how do you go about
systematising states?
I use a “states” table to track all
component states:
Full state table
Don’t worry, we are going to
break this down.
This table has a row for each
possible state. The rows are:
Static
Visited
Hover
Focus
Active
Disabled
Invalid
Selected
Selected &Focus
Then, components can be
grouped into categories in
columns:
Links
Buttons
Form controls
Selectable form controls
Calendar dates
Accordions
Tabs
Pagination
etc
This allows you to compare all
the components in their
different states.
States may need to be styled
slightly differently in each
category, but there should be an
overall consistency across all
components.
Links
For links, there is a column for
light and dark backgrounds.
Link columns: light
and dark
backgrounds
Static, visited, hover, focus and
active states are defined.
Link states: static,
visited, hover,
focus, active
Disabled, invalid, selected and
selected/focus states are not
relevant.
Non-relevant
states: disabled,
invalid, selected,
selected/focus
Buttons
For buttons, there is a column
for each of the button levels
(primary, secondary, link and
icon).
Button columns:
primary,
secondary, link,
icons
Static, hover, focus, active and
disabled states are defined.
Button states:
static, hover, focus, active, disabled
Button states:
static, hover,
focus, active,
disabled
Visited, invalid, selected and
selected/focus states are not
relevant.
Non-relevant
states: visited,
invalid, selected,
selected/focus
Form controls
For form controls, there is a
column for input/textarea and
select.
Form control
columns: input/
textarea, select
Static, hover, focus, disabled
and invalid states are defined.
As mentioned earlier, I’ve
included a hover state for form
controls. But this is a personal
choice.
Form control
states: static,
hover, focus,
disabled, invalid
Visited, active, selected and
selected/focus states are not
relevant.
Non-relevant
states: visited,
active, selected,
selected/focus
Selectable form controls
For selectable form controls,
there is a column for radios,
checkboxes and segmented
controls.
Clickable form
control columns:
radio, checkbox,
segmented control
Static, hover, focus, disabled,
invalid, selected and selected &
focus states are defined.
Clickable form
control states:
static, hover,
focus, disabled,
invalid, selected,
selected/focus
The visited states are not
relevant. In some systems I have
included an active state for
segmented controls, but it is up
to the team.
Non-relevant states:
visited, active
Non-relevant
states: visited and
possibly active
?
Accordion
For accordion, there is a column
for the closed and open version
of an accordion item.
Accordion columns:
closed, open
Accordion
columns: closed,
open
Static, hover, focus and active
states are defined.
Accordion states:
static, hover,
focus, active
Visited, disabled, invalid,
selected and selected/focus
states are not relevant.
Non-relevant
states: visited,
active, disabled,
invalid, selected,
selected/focus
In-page tabs
For in-page tabs, there is a
column for the closed and open
version of tab items.
Tabs columns:
open, closed
Tabs columns:
open, closed
Static, hover, focus and active
states are defined for closed
tabs.
Tab states: static,
hover, focus, active
Visited, disabled, invalid,
selected and selected/focus
states are not relevant.
Non-relevant
states: visited,
disabled, invalid,
selected, selected/
focus
Open tabs do not require a hover
or active state as they are
already “open and active”.
Non-relevant states for open:
hover, active
Non-relevant
states for open:
hover, active
Just an example
This chart shows one way that
different states can be styled.
The table is available online:
URL to come
Take aways
Take away 1:
It’s important to be aware of all
of the different states.
Take away 2:
It’s important to design for all of
these different states, especially
for non-native widgets.
Why?
Because when these states are
poorly executed, it can have an
impact on real users.
Take away 3:
Systematising the states is
important for websites and
applications?
Why?
It allows you to maintain a
visual consistency across your
websites and/or applications.
Russ Weakley
Max Design
Site: maxdesign.com.au
Twitter: twitter.com/russmaxdesign
Slideshare: slideshare.net/maxdesign
Linkedin: linkedin.com/in/russweakley

More Related Content

What's hot

Fundamentals of Product Definition Process - MRD PRD FRD
Fundamentals of Product Definition Process - MRD PRD FRDFundamentals of Product Definition Process - MRD PRD FRD
Fundamentals of Product Definition Process - MRD PRD FRD
Leon Kotovich
 

What's hot (20)

Become a Great Product Manager
Become a Great Product ManagerBecome a Great Product Manager
Become a Great Product Manager
 
Product Owner and Strategy
Product Owner and StrategyProduct Owner and Strategy
Product Owner and Strategy
 
Scaling Agile with JIRA Software and Portfolio for JIRA
Scaling Agile with JIRA Software and Portfolio for JIRAScaling Agile with JIRA Software and Portfolio for JIRA
Scaling Agile with JIRA Software and Portfolio for JIRA
 
Agile practices using jira atlassian
Agile practices using jira atlassianAgile practices using jira atlassian
Agile practices using jira atlassian
 
Confluence
ConfluenceConfluence
Confluence
 
Intro to Salesforce Lightning Web Components (LWC)
Intro to Salesforce Lightning Web Components (LWC)Intro to Salesforce Lightning Web Components (LWC)
Intro to Salesforce Lightning Web Components (LWC)
 
Introduction to flexbox
Introduction  to  flexboxIntroduction  to  flexbox
Introduction to flexbox
 
Introduction to GraphQL: Mobile Week SF
Introduction to GraphQL: Mobile Week SFIntroduction to GraphQL: Mobile Week SF
Introduction to GraphQL: Mobile Week SF
 
Accessibility Testing using Axe
Accessibility Testing using AxeAccessibility Testing using Axe
Accessibility Testing using Axe
 
Fundamentals of Product Definition Process - MRD PRD FRD
Fundamentals of Product Definition Process - MRD PRD FRDFundamentals of Product Definition Process - MRD PRD FRD
Fundamentals of Product Definition Process - MRD PRD FRD
 
Web Development with Laravel 5
Web Development with Laravel 5Web Development with Laravel 5
Web Development with Laravel 5
 
Fitbit Agile and Waterfall techniques
Fitbit Agile and Waterfall techniquesFitbit Agile and Waterfall techniques
Fitbit Agile and Waterfall techniques
 
SAFe Dependency Board Widget V3 for IBM Rational Team Concert (RTC)
SAFe Dependency Board Widget V3 for IBM Rational Team Concert (RTC)SAFe Dependency Board Widget V3 for IBM Rational Team Concert (RTC)
SAFe Dependency Board Widget V3 for IBM Rational Team Concert (RTC)
 
Awareness Session on Women Wellness
Awareness Session on Women Wellness Awareness Session on Women Wellness
Awareness Session on Women Wellness
 
Product Strategy and Product Success
Product Strategy and Product SuccessProduct Strategy and Product Success
Product Strategy and Product Success
 
Back to the Basics - 1 - Introduction to Web Development
Back to the Basics - 1 - Introduction to Web DevelopmentBack to the Basics - 1 - Introduction to Web Development
Back to the Basics - 1 - Introduction to Web Development
 
Web Designing Syllabus
Web Designing SyllabusWeb Designing Syllabus
Web Designing Syllabus
 
CSS Flexbox (flexible box layout)
CSS Flexbox (flexible box layout)CSS Flexbox (flexible box layout)
CSS Flexbox (flexible box layout)
 
Hybrid automation framework
Hybrid automation frameworkHybrid automation framework
Hybrid automation framework
 
Automated UI Testing
Automated UI TestingAutomated UI Testing
Automated UI Testing
 

Similar to Accessible states in Design Systems

Aol News Review Oct2008
Aol News Review Oct2008Aol News Review Oct2008
Aol News Review Oct2008
Mrinal Sharma
 

Similar to Accessible states in Design Systems (20)

Manual
ManualManual
Manual
 
Front End Frameworks - are they accessible
Front End Frameworks - are they accessibleFront End Frameworks - are they accessible
Front End Frameworks - are they accessible
 
Scopic UX Design Test Task.pdf
Scopic UX Design Test Task.pdfScopic UX Design Test Task.pdf
Scopic UX Design Test Task.pdf
 
Building accessible web components without tears
Building accessible web components without tearsBuilding accessible web components without tears
Building accessible web components without tears
 
Web accessibility testing 1 - keyboard
Web accessibility testing 1 - keyboardWeb accessibility testing 1 - keyboard
Web accessibility testing 1 - keyboard
 
How to add rich interactions to your prototype
How to add rich interactions to your prototypeHow to add rich interactions to your prototype
How to add rich interactions to your prototype
 
Accessibility microinteractions: better user experience, happier developers
Accessibility microinteractions: better user experience, happier developersAccessibility microinteractions: better user experience, happier developers
Accessibility microinteractions: better user experience, happier developers
 
How to build accessible UI components
How to build accessible UI componentsHow to build accessible UI components
How to build accessible UI components
 
What is Toggle Button-Technical Chamber.pdf
What is Toggle Button-Technical Chamber.pdfWhat is Toggle Button-Technical Chamber.pdf
What is Toggle Button-Technical Chamber.pdf
 
UI_UX_testing tips
UI_UX_testing tipsUI_UX_testing tips
UI_UX_testing tips
 
CSS Disable Button - How to Disable Buttons Using CSS - Blogs
CSS Disable Button - How to Disable Buttons Using CSS - BlogsCSS Disable Button - How to Disable Buttons Using CSS - Blogs
CSS Disable Button - How to Disable Buttons Using CSS - Blogs
 
Unit three Advanced State Modelling
Unit three Advanced State ModellingUnit three Advanced State Modelling
Unit three Advanced State Modelling
 
2 front panel
2  front panel2  front panel
2 front panel
 
A Case Study For Evaluating Interface Design Through Communicability
A Case Study For Evaluating Interface Design Through CommunicabilityA Case Study For Evaluating Interface Design Through Communicability
A Case Study For Evaluating Interface Design Through Communicability
 
BEX.pptx
BEX.pptxBEX.pptx
BEX.pptx
 
Studiocode 5 how to #1
Studiocode 5 how to #1Studiocode 5 how to #1
Studiocode 5 how to #1
 
Aol News Review Oct2008
Aol News Review Oct2008Aol News Review Oct2008
Aol News Review Oct2008
 
Checking the "Feel" of your UI with an Interaction Audit
Checking the "Feel" of your UI with an Interaction AuditChecking the "Feel" of your UI with an Interaction Audit
Checking the "Feel" of your UI with an Interaction Audit
 
Checking the "Feel" of your UI with an Interaction Audit
Checking the "Feel" of your UI with an Interaction AuditChecking the "Feel" of your UI with an Interaction Audit
Checking the "Feel" of your UI with an Interaction Audit
 
Heuristic evaluation
Heuristic evaluationHeuristic evaluation
Heuristic evaluation
 

More from Russ Weakley

More from Russ Weakley (20)

Accessible chat windows
Accessible chat windowsAccessible chat windows
Accessible chat windows
 
Accessible names & descriptions
Accessible names & descriptionsAccessible names & descriptions
Accessible names & descriptions
 
A deep dive into accessible names
A deep dive into accessible namesA deep dive into accessible names
A deep dive into accessible names
 
What are accessible names and why should you care?
What are accessible names and why should you care?What are accessible names and why should you care?
What are accessible names and why should you care?
 
What is WCAG 2 and why should we care?
What is WCAG 2 and why should we care?What is WCAG 2 and why should we care?
What is WCAG 2 and why should we care?
 
Creating accessible modals and autocompletes
Creating accessible modals and autocompletesCreating accessible modals and autocompletes
Creating accessible modals and autocompletes
 
Accessibility in Design systems - the pain and glory
Accessibility in Design systems - the pain and gloryAccessibility in Design systems - the pain and glory
Accessibility in Design systems - the pain and glory
 
Accessible Inline errors messages
Accessible Inline errors messagesAccessible Inline errors messages
Accessible Inline errors messages
 
What is accessibility?
What is accessibility?What is accessibility?
What is accessibility?
 
Accessibility in Pattern Libraries
Accessibility in Pattern LibrariesAccessibility in Pattern Libraries
Accessibility in Pattern Libraries
 
Accessibility in pattern libraries
Accessibility in pattern librariesAccessibility in pattern libraries
Accessibility in pattern libraries
 
Building an accessible auto-complete - #ID24
Building an accessible auto-complete - #ID24Building an accessible auto-complete - #ID24
Building an accessible auto-complete - #ID24
 
Building an accessible auto-complete
Building an accessible auto-completeBuilding an accessible auto-complete
Building an accessible auto-complete
 
Creating Acessible floating labels
Creating Acessible floating labelsCreating Acessible floating labels
Creating Acessible floating labels
 
Creating an Accessible button dropdown
Creating an Accessible button dropdownCreating an Accessible button dropdown
Creating an Accessible button dropdown
 
Creating a Simple, Accessible On/Off Switch
Creating a Simple, Accessible On/Off SwitchCreating a Simple, Accessible On/Off Switch
Creating a Simple, Accessible On/Off Switch
 
Accessible custom radio buttons and checkboxes
Accessible custom radio buttons and checkboxesAccessible custom radio buttons and checkboxes
Accessible custom radio buttons and checkboxes
 
Deep Dive into Line-Height
Deep Dive into Line-HeightDeep Dive into Line-Height
Deep Dive into Line-Height
 
Building Accessible Web Components
Building Accessible Web ComponentsBuilding Accessible Web Components
Building Accessible Web Components
 
Understanding the mysteries of the CSS property value syntax
Understanding the mysteries of the CSS property value syntaxUnderstanding the mysteries of the CSS property value syntax
Understanding the mysteries of the CSS property value syntax
 

Recently uploaded

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
SanaAli374401
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 

Recently uploaded (20)

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 

Accessible states in Design Systems