SlideShare a Scribd company logo
1 of 158
Download to read offline
Accessible chat
windows
I’m going to provide you with some
things to consider if you’re trying
to build an accessible chat window.
However, before we dive into chat
windows I’d like to de
fi
ne three
concepts, just to avoid confusion.
The three concepts are:
1. Modal dialogues
2. Pop-up noti
fi
cations
3. Chat windows
Modal dialogues
Modal dialogues are functions that
are designed to interrupt a user
fl
ow.
They require the user to perform a
speci
fi
c action before proceeding
with the user
fl
ow.
Generally, modal dialogues are
separate “windows” positioned
over the top of the parent page.
Are you sure you want to delete this
fi
le?
You cannot undo this action.
Delete
Cancel
Greyed out background
Are you sure you want to delete this
fi
le?
You cannot undo this action.
Delete
Cancel
Modal container
Are you sure you want to delete this
fi
le?
You cannot undo this action.
Delete
Cancel
Close button
Are you sure you want to delete this
fi
le?
You cannot undo this action.
Delete
Cancel
Modal content
Are you sure you want to delete this
fi
le?
You cannot undo this action.
Delete
Cancel Action buttons
Pop-up
noti
fi
cations
Pop-up noti
fi
cations communicate
speci
fi
c events to the user without
forcing them to perform any
action.
Pop-up noti
fi
cations can appear
anywhere within the overall
layout of the page.
For example, Toast noti
fi
cations
often “pop up” at the bottom of
the screen.
A success toast
An information toast
A warning toast
An error toast
Toast pop-ups in bottom right corner
A success toast
An information toast
A warning toast
An error toast
A “Success” toast
A success toast
An information toast
A warning toast
An error toast
An “Information” toast
A success toast
An information toast
A warning toast
An error toast
A “Warning” toast
A success toast
An information toast
A warning toast
An error toast
An “Error” toast
A success toast
An information toast
A warning toast
An error toast
Optional close buttons
Chat windows
“Chat windows” or “chatbots” are
UI components that allow users to
engage with an operator or
arti
fi
cial intelligence.
Unlike modal dialogues, the aim of
chat windows is not to force users
to complete an action before
continuing.
Chat windows provide personal
assistance to users at speci
fi
c
times within the user’s journey.
This assistance could include
answering a question or helping
the user complete a task.
Common features of
chat windows
When opened, chat windows are
commonly positioned in the
bottom right corner of the screen.
Most chat windows include
functionality such as:
Welcome to live chat
Type your message here…
Chat window
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
Welcome to live chat
Type your message here…
Chat title
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
Welcome to live chat
Hi!
How may I help you?
Type your message here…
Can I ask about costs?
Close button
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
Welcome to live chat
Type your message here…
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Optional collapse button
Message:
Welcome to live chat
Type your message here…
Conversation window
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
Welcome to live chat
Type your message here…
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Operator name and time
Operator messages
Message:
Welcome to live chat
Type your message here…
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm User name and time
User message
Message:
Welcome to live chat
Type your message here…
Form label
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
Welcome to live chat
Type your message here…
Form input
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
Welcome to live chat
Type your message here… Submit button
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
Welcome to live chat
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Type your message here…
Optional add attachments
Message:
Some chat windows include login
forms within the chat window.
Welcome to live chat
Name:
Title:
Email:
Chat window with form
Auto vs manual
triggering chat
windows
Chat windows can be triggered in
two ways:
• manually by the user
• automatically based on speci
fi
c
events.
Automatically triggered chat
windows could interrupt the
user's current process.
This is especially important for
some neurodiverse users, where
visual distractions can cause a
signi
fi
cant loss of concentration.
Ideally, chat windows should allow
users to determine when and if
they want to engage with the
function.
Elements for
triggering a chat
window
The <button> element should be
used to trigger the opening of chat
windows.
<button>Chat with us</button>
These <button> elements are
often placed in the bottom right
corner of the screen.
Chat with us
Chat window trigger
And they are also often placed
towards the very end of the page’s
source order.
...
</section>
</div>
</div>
<button>Chat with us</button>
<script src="https://cdnjs.cloudflare.com/ajax/libs/
headjs/1.0.3/head.min.js"></script>
<script src="dist/something.js"></script>
<script src=“plugin/notes/another.js"></script>
</body>
</html
As we’ll see, the visual position and
the position in source order can
impact some users.
Four people
We’ll now look at how chat
windows can affect four different
people.
These example user pro
fi
les are
taken from the Gov.UK disabilities
and impairments user pro
fi
les.
https://www.gov.uk/government/publications/
understanding-disabilities-and-impairments-user-pro
fi
les
1. Claudia
Claudia is a person who is partially
sighted. She uses a screen magni
fi
er
so that she can enlarge the overall
display.
Claudia has her magni
fi
cation set to
an extreme setting, which means she
can only see a small section of the
screen at a time.
Problem 1:
If Claudia triggers the <button> and
focus doesn’t shift to the chat
window, she may not be aware that
the chat window has been activated.
Problem 2:
Claudia may not see messages from
the operator if actions take place
off-screen.
Things to consider:
For Claudia, proximity is the key. If
she triggers an action, the result
should appear in close proximity to
the trigger.
2. Christopher
Christopher is a person with
rheumatoid arthritis. He prefers to
use a keyboard to avoid mouse
movements which can impact his
condition.
Problem 1:
If the <button> is one of the last
items in tabindex order, it may take
many keystrokes for Christoper to
navigate to this element.
Problem 2:
If focus doesn’t shift from the
<button> to the chat window when
it has been triggered, Christopher
may not be able to interact with the
chat window at all.
Problem 3:
If interactive functions within the
chat window are not accessible via
keystrokes, Christopher will not be
able to interact with them.
Things to consider 1:
Christopher should be able to bypass
blocks of content to access the chat
window trigger.
Things to consider 2:
All interactive elements in the chat
window must be completely
keyboard accessible without a
mouse.
Things to consider 3:
Focus must be visible on every
focusable element so that
Christopher can track what is
currently in focus.
3. Ashleigh
Ashleigh is a person who is legally
blind. She uses a screen reader to
navigate websites.
Ashleigh is also a keyboard-only
user, as she does not use a mouse. So,
many of the issues mentioned for
Christopher also apply to Ashleigh.
Problem 1:
Ashleigh needs to know that the page
contains a chat function. Otherwise,
she may not even know that it exists.
Problem 2:
The purpose of the <button> needs
to be clearly de
fi
ned. For example, if
it just says “Chat”, this may not
provide enough context for Ashleigh.
Problem 3:
When focus shifts to the chat
window, Ashleigh may not know
what has happened. All she knows is
that focus has shifted somewhere
else on the page.
Problem 4:
If interactive elements within the
chat window don’t have clear labels,
Ashleigh may not understand their
purpose.
Problem 5:
If the operator submitting a new
message, Ashleigh may not be
informed that this has occurred.
Problem 6:
If Ashleigh closes the chat window
and focus does not return to the
<button>, Ashleigh may become
disorientated within the overall page.
Things to consider 1:
Ashleigh should be informed that the
page contains a chat function. And
she should be able to bypass blocks
of content to access the chat
window trigger.
Things to consider 2:
The <button> needs to have a label
that is meaningful for Ashleigh.
Things to consider 3:
When the chat window receives
focus, its name and role need to be
announced so that Ashleigh
understands its purpose.
Things to consider 4:
All interactive elements needs to
have clear labels so that Ashleigh
understands their purpose.
Things to consider 5:
Ashleigh needs to be informed about
all dynamic changes within the chat
window - such as newly added
messages from the operator.
Things to consider 6:
When the chat window is closed,
focus needs to return to the
<button> so Ashleigh can orientate
herself within the overall page.
4. Simone
Simone is a person with Dyslexia.
She has dif
fi
culty reading large blocks
of content.
Simone also has spelling issues,
especially when typing information
into the chat window.
Problem 1:
If Simone misspells one or more
words, this may confuse the operator
or the arti
fi
cial intelligence.
Problem 2:
Abbreviations and acronyms may
confuse Simone, especially if she
feels stressed due to time
constraints.
Things to consider:
• use plain language
• avoid acronyms
• use short sentences/paragraphs
Some markup tips
There are many ways to mark up a
chat window depending on the
types of functionality needed.
But let’s take our previous
example and look at some possible
HTML markup.
Welcome to live chat
Type your message here…
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
Overall containers
The overall container can be given
a class name of "chat".
Welcome to live chat
Type your message here…
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
"chat"
<div class="chat">
</div>
The container for the heading and
“Close” button can be given a class
name of "chat-header".
Welcome to live chat
Type your message here…
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
"chat-header"
<div class="chat">
<div class="chat-header">
</div>
</div>
The container for the messages
can be given a class name of
"chat-content".
Welcome to live chat
Type your message here…
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
"chat-content"
<div class="chat">
<div class="chat-header">
</div>
<div class="chat-content">
</div>
</div>
The container for the label, user
input and submit button can be
given a class name of "chat-
submission".
Welcome to live chat
Type your message here…
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
"chat-submission"
<div class="chat">
<div class="chat-header">
</div>
<div class="chat-content">
</div>
<div class="chat-submission">
</div>
</div>
“chat” and
“chat-header”
The overall container needs to be
given a role so that assistive
technology users understand its
purpose.
As there is no speci
fi
c role for
chat windows, we could use
role="group".
Welcome to live chat
Type your message here…
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
role="group"
<div class="chat" role="group">
<div class="chat-header">
</div>
<div class="chat-conversation">
</div>
<div class="chat-submission">
</div>
</div>
This overall container also needs
to receive focus which can be
achieved using tabindex="0".
<div class="chat" role="group" tabindex="0">
<div class="chat-header">
</div>
<div class="chat-conversation">
</div>
<div class="chat-submission">
</div>
</div>
It also needs to be given an
accessible name that will be
announced to assistive
technologies.
We can use aria-labelledby on
the container and a matching id
on the heading.
<div class="chat" role="group" tabindex="0" aria-
labelledby="a1">
<div class="chat-header">
<h3 id="a1">Welcome to live chat</h3>
</div>
<div class="chat-content">
</div>
<div class="chat-submission">
</div>
</div>
The “Close” function should be a
<button> element - ideally with a
visible text label saying “Close”.
<div class="chat" role="group" tabindex="0" aria-
labelledby="a1">
<div class="chat-header">
<h3 id="a1">Welcome to live chat</h3>
<button>Close</button>
</div>
<div class="chat-content">
</div>
<div class="chat-submission">
</div>
</div>
However, if a visible text label is
not possible due to design
limitations, it still needs an
accessible name.
<div class="chat" role="group" tabindex="0" aria-
labelledby="a1">
<div class="chat-header">
<h3 id="a1">Welcome to live chat</h3>
<button aria-label="Close chat window"></button>
</div>
<div class="chat-content">
</div>
<div class="chat-submission">
</div>
</div>
“chat-content”
The chat-content container will
contain the dynamically added
messages.
This container can be set with
role="log".
Welcome to live chat
Type your message here…
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
role="log"
<div class="chat" role="group" tabindex="0" aria-
labelledby="a1">
<div class="chat-header">
<h3 id="a1">Welcome to live chat</h3>
<button aria-label="Close chat window"></button>
</div>
<div class="chat-content" role="log">
</div>
<div class="chat-submission">
</div>
</div>
Elements with role="log" are
classi
fi
ed as live regions and have
an implicit aria-live value of
polite.
This means that each dynamically
added message will be announced
at the next graceful opportunity.
As no aria-atomic value has
been set, it will default to
"false".
This means that assistive
technologies will announce only
newly added messages.
Sandy at 2:15pm. How can I help you?
Messages
The "chat-content" container
presents a list of messages. So,
each message could be marked up
as a list item.
<div class="chat-content" role="log">
<ul>
<li class="chat-message-operator">
<span class="chat-details">Sandy at 2:15pm</span>
<span>How can I help you?</span>
</li>
<li class="chat-message-user">
<span class="chat-details">You at 2:17pm</span>
<span>What does it cost?</span>
</li>
</ul>
</div>
<div class="chat-content" role="log">
<ul>
<li class="chat-message-operator">
<span class="chat-details">Sandy at 2:15pm</span>
<span>How can I help you?</span>
</li>
<li class="chat-message-user">
<span class="chat-details">You at 2:17pm</span>
<span>What does it cost?</span>
</li>
</ul>
</div>
“chat-submission”
The chat-submission container
should contain a <form>.
Welcome to live chat
Type your message here…
Hi!
How may I help you?
Can I ask about costs?
Sandy at 2:15pm
Sandy at 2:15pm
You at 2:17pm
Message:
form
<div class="chat-submission">
<form action="#">
</form>
</div>
Users should be able to submit
comments via either the <input>
or <textarea> elements.
The <textarea> element would
allow for multiple lines to be
typed by the user, so it may be a
better option in some cases.
<div class="chat-submission">
<form action="#">
<textarea></textarea>
</form>
</div>
The “Message” text should be
placed inside a <label> element.
<div class="chat-submission">
<form action="#">
<label>Message</label>
<textarea></textarea>
</form>
</div>
The <label> and <textarea>
elements needs to be
programmatically associated
using matching for and id values.
<div class="chat-submission">
<form action="#">
<label for="message">Message</label>
<textarea id="message"></textarea>
</form>
</div>
The “Submit” function should be a
<button>.
It should use a visible text label,
but an aria-label could be used
if there are design limitations.
<div class="chat-submission">
<form action="#">
<label for="message">Message</label>
<textarea id="message"></textarea>
<button>Submit</button>
</form>
</div>
<div class="chat-submission">
<form action="#">
<label for="message">Message</label>
<textarea id="message"></textarea>
<button aria-label="Submit message"></button>
</form>
</div>
Conclusion
All of these suggestions could help
to produce a more accessible chat
window.
However, you should always
perform rigorous testing and
include real users as part of the
testing process.
Have fun!

More Related Content

What's hot (10)

Defined Names Group (Formula Tab Excel)
Defined Names Group (Formula Tab Excel)Defined Names Group (Formula Tab Excel)
Defined Names Group (Formula Tab Excel)
 
View Tab in Ms-Excel
View Tab in Ms-ExcelView Tab in Ms-Excel
View Tab in Ms-Excel
 
Peachtree complete instructions
Peachtree complete instructionsPeachtree complete instructions
Peachtree complete instructions
 
Excel Crash Course: Pivot Tables
Excel Crash Course: Pivot TablesExcel Crash Course: Pivot Tables
Excel Crash Course: Pivot Tables
 
Tally
TallyTally
Tally
 
Flexbox
FlexboxFlexbox
Flexbox
 
Ppt on pivot table
Ppt on pivot tablePpt on pivot table
Ppt on pivot table
 
Manual book online trading web version for Jafets Colt, JFX
Manual book online trading web version for Jafets Colt, JFXManual book online trading web version for Jafets Colt, JFX
Manual book online trading web version for Jafets Colt, JFX
 
Implementation of payroll in tally erp 9
Implementation of payroll in tally erp 9Implementation of payroll in tally erp 9
Implementation of payroll in tally erp 9
 
Creating inventory masters in Tally ERP 9
Creating inventory masters in Tally ERP 9Creating inventory masters in Tally ERP 9
Creating inventory masters in Tally ERP 9
 

Similar to Accessible chat windows

Adobe Acrobat Connect Pro 2010
Adobe Acrobat Connect Pro 2010Adobe Acrobat Connect Pro 2010
Adobe Acrobat Connect Pro 2010
Karen Brooks
 
PowerPoint Presentation NetMeeting 3.X and Messenger
PowerPoint Presentation NetMeeting 3.X and MessengerPowerPoint Presentation NetMeeting 3.X and Messenger
PowerPoint Presentation NetMeeting 3.X and Messenger
Videoguy
 

Similar to Accessible chat windows (20)

Adobe Acrobat Connect Pro 2010
Adobe Acrobat Connect Pro 2010Adobe Acrobat Connect Pro 2010
Adobe Acrobat Connect Pro 2010
 
Help Scout
Help ScoutHelp Scout
Help Scout
 
Talk outline
Talk outlineTalk outline
Talk outline
 
Join.me basics
Join.me basicsJoin.me basics
Join.me basics
 
Adobe Acrobat Connect Pro
Adobe Acrobat Connect ProAdobe Acrobat Connect Pro
Adobe Acrobat Connect Pro
 
Creating engagement v203
Creating engagement v203Creating engagement v203
Creating engagement v203
 
WebsiteAlive Operator Panel
WebsiteAlive Operator PanelWebsiteAlive Operator Panel
WebsiteAlive Operator Panel
 
Operator How-To
Operator How-ToOperator How-To
Operator How-To
 
Support panel desktop user guide ver 4.5
Support panel desktop user guide ver 4.5Support panel desktop user guide ver 4.5
Support panel desktop user guide ver 4.5
 
Support Panel Console 3 User Guide
Support  Panel Console 3 User GuideSupport  Panel Console 3 User Guide
Support Panel Console 3 User Guide
 
Twitlonger ppt by Kimmy 102005
Twitlonger ppt by Kimmy 102005Twitlonger ppt by Kimmy 102005
Twitlonger ppt by Kimmy 102005
 
Twitlonger ppt by Kimmy 102005
Twitlonger ppt by Kimmy 102005Twitlonger ppt by Kimmy 102005
Twitlonger ppt by Kimmy 102005
 
Creating accessible modals and autocompletes
Creating accessible modals and autocompletesCreating accessible modals and autocompletes
Creating accessible modals and autocompletes
 
Soft-performance: Messages - ISTA 2014
Soft-performance: Messages - ISTA 2014Soft-performance: Messages - ISTA 2014
Soft-performance: Messages - ISTA 2014
 
EuroIA 2015 On Messages
EuroIA 2015 On MessagesEuroIA 2015 On Messages
EuroIA 2015 On Messages
 
Front End Frameworks - are they accessible
Front End Frameworks - are they accessibleFront End Frameworks - are they accessible
Front End Frameworks - are they accessible
 
Intro to zoom_u3a_nunawading
Intro  to zoom_u3a_nunawading Intro  to zoom_u3a_nunawading
Intro to zoom_u3a_nunawading
 
PowerPoint Presentation NetMeeting 3.X and Messenger
PowerPoint Presentation NetMeeting 3.X and MessengerPowerPoint Presentation NetMeeting 3.X and Messenger
PowerPoint Presentation NetMeeting 3.X and Messenger
 
Lenovo K50a40 User Guide V1.0
Lenovo K50a40 User Guide V1.0Lenovo K50a40 User Guide V1.0
Lenovo K50a40 User Guide V1.0
 
A guideline for using hangouts on air for company collaboration
A guideline for using hangouts on air for company collaborationA guideline for using hangouts on air for company collaboration
A guideline for using hangouts on air for company collaboration
 

More from Russ Weakley

More from Russ Weakley (20)

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?
 
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 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?
 
Accessible states in Design Systems
Accessible states in Design SystemsAccessible states in Design Systems
Accessible states in Design Systems
 
Building an accessible progressive loader
Building an accessible progressive loaderBuilding an accessible progressive loader
Building an accessible progressive loader
 
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
 
Accessible Form Hints and Errors
Accessible Form Hints and ErrorsAccessible Form Hints and Errors
Accessible Form Hints and Errors
 
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
 

Recently uploaded

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 

Accessible chat windows