SlideShare a Scribd company logo
1 of 18
Understandable Content and  Controls 이해의 용이성 Greg Shin ( 신승식 ) LG Electronics http://gregshin.pe.kr/blog/ Table of Contents ,[object Object],[object Object],[object Object],[object Object],웹 접근성 준수 실무 세미나 November 29, 2006
1. Make It Understandable ,[object Object],Guidelines 1. Content must be  perceivable . 2. Interface components in the content must be  operable. 3. Content and controls must be  understandable. 4. Content should be robust enough to work with current and future user agents (including assistive technologies). Accessible Form Accessible Table Logical organization Checklists
2. Table – Layout Table ,[object Object],Two types Bad Example Solutions Linearization ,[object Object],[object Object],Cell 4 Cell 3 Cell 2 Cell 1 Cell 4 Cell 3 Cell 2 Cell 1
2. Table – Data Table – Identifying  a Table ,[object Object],[object Object],[object Object],Vegetable Prices in Seoul and Busan (Won) <table  summary =&quot;Wholesale and retail prices of vegetables in Seoul and Busan. There are two levels of row headings.&quot;> <caption> Vegetable prices in Seoul and Busan (Won) </caption>   240 290 210 Retail 80 90 110 Wholesale Busan 250 300 200 Retail 100 120 100 Wholesale Seoul Tomatoes Carrots Beans
2. Table – Data Table – Identifying rows and columns(1) ,[object Object],[object Object],<table border=&quot;1&quot; summary=&quot;Individual scores of midterm and final exams&quot;> <caption>Individual Scores</caption> <thead> <tr> <th></th> <th  scope=&quot;col&quot;  abbr=&quot;midterm&quot;>Midterm Examamination</th> <th  scope=&quot;col&quot;  abbr=&quot;final&quot;>Final Examination</th> </tr> </thead> <tbody> <tr> <th  scope=&quot;row&quot; >John</th> <td>10</td> <td>20</td> </tr> <tr> <th  scope=&quot;row&quot; >Elisa</th> <td>30</td> <td>40</td> </tr> </tbody> </table>  40 30 Elisa 20 10 John Final Examination Midterm Examination
2. Table – Data Table – Identifying rows and columns(2) ,[object Object],[object Object],<table border=&quot;1&quot; summary=&quot;Individual scores of midterm and final exams&quot;> <caption>Individual Scores</caption> <thead> <tr> <th></th> <th  id=&quot;midterm&quot;  abbr=&quot;midterm&quot;>Midterm Examamination</th> <th  id=&quot;final&quot;  abbr=&quot;final&quot;>Final Examination</th> </tr> </thead> <tbody> <tr> <th  id=&quot;John&quot; >John</th> <td  headers=&quot;midterm John&quot; >10</td> <td  headers=&quot;final John&quot; >20</td> </tr> <tr> <th  id=&quot;Elisa&quot; >Elisa</th> <td  headers=&quot;midterm Elisa&quot; >30</td> <td  headers=&quot;final Elisa&quot; >40</td> </tr> </tbody> </table>  40 30 Elisa 20 10 John Final Examination Midterm Examination
3.1. Semantic Markups ,[object Object],<strong>truly</strong> <em>truly</em> <span class=“emphasis”>truly</span> <font color=“red”>truly</font> I  truly  believe it. table {empty-cells: show} &nbsp; <img src=“transparent.png”> Empty cell h1 {margin-bottom: 2em} <h1>Heading 1</h1> <font size=“3”>Heading 1</font><br/><br/> Heading 1 Heading 2 {letter-spacing: 1em} W&nbsp;O&nbsp; W O R L D {text-align: justify} 상 &nbsp;&nbsp; 세  ... 상세 목차 <li>Firstly, you need to be proactive.</li> * Firstly, you need to be<br/> &nbsp;&nbsp;proactive. ,[object Object],<p>Sometimes seeing is not all.</p> Sometimes seeing<br/> is not all. Sometimes seeing is not all. Good implementation Bad implementation Your intentions
3.2. CSS - Accessibility Benefits ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Quoted from http://www.w3.org/TR/CSS-access
3.2. CSS – User Override of Styles ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],People with disabilities can use their own adaptable style while reading the page. Example of User Style Sheet Refer to the site below for other browsers: http://www.howtocreate.co.uk/userStyle.html Internet Explorer 6 & 7 Firefox with  Web Developer Toolbar Opera 9
3.2. CSS – Content generation, Alternate representation ,[object Object],* [accesskey]:after  {  content: attr(accesskey) ;  text-decoration: underline;  padding-left: 0.5em;  font-size: smaller; }   ul:after {  content: End of Unordered List;  }   q:lang(en)  { quotes: '&quot;' '&quot;' &quot;'&quot; &quot;'&quot; }  q:lang(ko)  { quotes: &quot; 『 &quot; &quot; 』 &quot; ' 「 ' ' 」 ' }   H1 {  voice-family: paul;  cue-before: url(&quot;ping.mp3&quot;)  }   Showing accesskey after each element Showing end of list Use appropriate quotation marks Cueing header content Showing special content when printing @media print {  acronym:after { content: &quot;(&quot; attr(title) &quot;)&quot;   } a:after {  content: &quot; &quot;attr(href);  font-size: smaller; }   }
4. Forms – Form components ,[object Object],Accessibility Recommendations HTML markups Components <input type=“file”…> File Do not use &quot; onchange &quot;. Match with  <label> . Use  <label>  and  &quot;title&quot; .  Share &quot; name &quot;s, use unique &quot; id &quot;s. Group using  <fieldset>  and  <legend> . Match with  <label> . Match with  <label> . Use &quot; title &quot; when necessary. Not recommended Add the  &quot;alt&quot;  attribute. <select> List boxes <input type=“checkboxes”…> Check boxes <input type=“radio” …> Radio buttons <textarea …> Text areas <input type=“text” …> <input type=“password” …> Text entry fields <button …> Generalized buttons <input type=“image” …> Graphical buttons <input type=“button” …> Push buttons
4. Forms - Buttons ,[object Object],<input type=&quot;image&quot; src=&quot;/images/main/MemberLoginBtn.gif&quot;  alt=&quot; 로그인 &quot; >   <label for=&quot;main-search&quot;> 자료검색 </label> <input id=&quot;main-search&quot; type=&quot;text&quot; class=&quot;type-text&quot; name=&quot;ss&quot; value=&quot;&quot;> <input type=&quot;hidden&quot; name=&quot;md&quot; value=&quot;search&quot;> <input type=&quot;image&quot; src=&quot;/images/main/SearchBtn.gif&quot;  alt=&quot; 검색 &quot; >
4. Forms – Text Input ,[object Object],<fieldset> <legend> 회원약관에 동의합니다 .</legend> <input  id=&quot;chk1&quot;  name=&quot;stipulation&quot; value=&quot;Y&quot; type=&quot;radio&quot;>  <label  for=&quot;chk1&quot; > 동의함 .</label> <input  id=&quot;chk2&quot;  name=&quot;stipulation&quot; value=&quot;N&quot; type=&quot;radio&quot;>  <label  for=&quot;chk2&quot; > 동의 안 함 .</label> </fieldset> <label for=&quot;lname&quot;> Last name: </label> <input type=&quot;text&quot; name=&quot;.ln&quot; value=&quot;&quot; size=&quot;30&quot; maxlength=&quot;50&quot;  id=&quot;lname&quot; > <label for=&quot;intl&quot;> Preferred content: </label> <select name=&quot;.intl&quot;  id=&quot;intl&quot; >
4. Forms – When Labels won’t Work ,[object Object],No on-screen text Shared prompting information Forms in Tables <input name=&quot;search&quot; id=&quot;search&quot; type=&quot;text&quot; value=&quot;&quot;  title=&quot;Search&quot; /> <input type=&quot;submit&quot; value=&quot;Search &raquo;&quot; /> <label for=&quot;ssid1&quot;> 주민등록번호 </label>:  <input type=&quot;text&quot; id=&quot;ssid1&quot;  title=&quot; 주민등록번호 앞  6 자리 &quot;  /> -  <input type=&quot;text&quot; id=&quot;ssid2&quot;  title=&quot; 주민등록번호 뒤  7 자리 &quot;  />
4. Forms – Fieldset & Legend ,[object Object],<fieldset> <legend>Payment details</legend> <fieldset class=&quot;radio&quot;> <legend>Credit card </legend> <input id=&quot;card1a&quot; type=&quot;radio&quot; name=&quot;card1&quot;> <label for=&quot;card1a&quot;>American express</label> <input id=&quot;card1b&quot; type=&quot;radio&quot; name=&quot;card1&quot;> <label for=&quot;card1b&quot;>Mastercard</label> <input id=&quot;card1c&quot; type=&quot;radio&quot; name=&quot;card1&quot;> <label for=&quot;card1c&quot;>Visa</label> <input id=&quot;card1d&quot; type=&quot;radio&quot; name=&quot;card1&quot;> <label for=&quot;card1d&quot;>Blockbuster card</label> </fieldset> <label for=&quot;cardnum&quot;>Card number</label> <input id=&quot;cardnum&quot; name=&quot;cardnum&quot;> <label for=&quot;expiry&quot;>Expiry date</label> <input id=&quot;expiry&quot; name=&quot;expiry&quot;> <input class=&quot;submit&quot; type=&quot;submit&quot; value=&quot;submit my details&quot;>  </fieldset>  Quoted from the book,  &quot;Web Accessibility: Web standards and regulatory compliance&quot;
4. Forms – Implicit Labeling ,[object Object],<label> username:  <input name=&quot;username&quot; type=&quot;text&quot;> </label> <label for=&quot;username&quot;>username: </label> <input id=&quot;username&quot; name=&quot;username&quot; type=&quot;text&quot;>
4. Forms - Validation ,[object Object],Extracted from http://juicystudio.com/experiments/form.php ,[object Object],[object Object],[object Object]
4. Forms - Help ,[object Object],<p> <label for=&quot;imei&quot;>IMEI Code: </label> <input type=&quot;text&quot; id=&quot;imei&quot; /> < a href=&quot;#imeihelp&quot; > What is IMEI?</a> </p> < div id=&quot;imeihelp&quot; > <h3>Explanation of IMEI</h3> <p>Help content here....</p> <p><a href=&quot;#fid&quot;>Back to IMEI input field</a>.</p> </div> For full script and information, visit http://juicystudio.com/experiments/numbertransfer.php

More Related Content

What's hot (18)

Html Intro2
Html Intro2Html Intro2
Html Intro2
 
Html
HtmlHtml
Html
 
The Basics of (X)HTML Tags
The Basics of (X)HTML TagsThe Basics of (X)HTML Tags
The Basics of (X)HTML Tags
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Html Ppt
Html PptHtml Ppt
Html Ppt
 
Html intro
Html introHtml intro
Html intro
 
Html introduction
Html introductionHtml introduction
Html introduction
 
Html ppt
Html pptHtml ppt
Html ppt
 
Html
HtmlHtml
Html
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
CSS
CSSCSS
CSS
 
Kml Basics Chpt 2 Placemarks
Kml Basics Chpt  2   PlacemarksKml Basics Chpt  2   Placemarks
Kml Basics Chpt 2 Placemarks
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Css
CssCss
Css
 

Viewers also liked

Käyttäjätiedon hyödyntäminen palvelutuotteen kehittämisessä
Käyttäjätiedon hyödyntäminen palvelutuotteen kehittämisessäKäyttäjätiedon hyödyntäminen palvelutuotteen kehittämisessä
Käyttäjätiedon hyödyntäminen palvelutuotteen kehittämisessäSatu Miettinen
 
Redesigning Corporate Training in a Web 2.0 World
Redesigning Corporate Training in a Web 2.0 WorldRedesigning Corporate Training in a Web 2.0 World
Redesigning Corporate Training in a Web 2.0 WorldGreg SHIN
 
Experience Service Design / Workshop 3
Experience Service Design / Workshop 3Experience Service Design / Workshop 3
Experience Service Design / Workshop 3Satu Miettinen
 
Issues in Globalization of E-Learning Content and Accessibility
Issues in Globalization of E-Learning Content and AccessibilityIssues in Globalization of E-Learning Content and Accessibility
Issues in Globalization of E-Learning Content and AccessibilityGreg SHIN
 
Presentación taller jornadas ele en el báltico. design thinking en la prosu...
Presentación taller jornadas ele en el báltico. design thinking en la prosu...Presentación taller jornadas ele en el báltico. design thinking en la prosu...
Presentación taller jornadas ele en el báltico. design thinking en la prosu...Héctor Rios
 
Presentación "Prosimurtuatu" en el aprendizaje de lenguas
Presentación "Prosimurtuatu" en el aprendizaje de lenguasPresentación "Prosimurtuatu" en el aprendizaje de lenguas
Presentación "Prosimurtuatu" en el aprendizaje de lenguasHéctor Rios
 
De consumidores pasivos a prosumidores de contenido
De consumidores pasivos a prosumidores de contenidoDe consumidores pasivos a prosumidores de contenido
De consumidores pasivos a prosumidores de contenidoHéctor Rios
 

Viewers also liked (8)

Käyttäjätiedon hyödyntäminen palvelutuotteen kehittämisessä
Käyttäjätiedon hyödyntäminen palvelutuotteen kehittämisessäKäyttäjätiedon hyödyntäminen palvelutuotteen kehittämisessä
Käyttäjätiedon hyödyntäminen palvelutuotteen kehittämisessä
 
Redesigning Corporate Training in a Web 2.0 World
Redesigning Corporate Training in a Web 2.0 WorldRedesigning Corporate Training in a Web 2.0 World
Redesigning Corporate Training in a Web 2.0 World
 
Experience Service Design / Workshop 3
Experience Service Design / Workshop 3Experience Service Design / Workshop 3
Experience Service Design / Workshop 3
 
Issues in Globalization of E-Learning Content and Accessibility
Issues in Globalization of E-Learning Content and AccessibilityIssues in Globalization of E-Learning Content and Accessibility
Issues in Globalization of E-Learning Content and Accessibility
 
Presentación taller jornadas ele en el báltico. design thinking en la prosu...
Presentación taller jornadas ele en el báltico. design thinking en la prosu...Presentación taller jornadas ele en el báltico. design thinking en la prosu...
Presentación taller jornadas ele en el báltico. design thinking en la prosu...
 
Presentación "Prosimurtuatu" en el aprendizaje de lenguas
Presentación "Prosimurtuatu" en el aprendizaje de lenguasPresentación "Prosimurtuatu" en el aprendizaje de lenguas
Presentación "Prosimurtuatu" en el aprendizaje de lenguas
 
De consumidores pasivos a prosumidores de contenido
De consumidores pasivos a prosumidores de contenidoDe consumidores pasivos a prosumidores de contenido
De consumidores pasivos a prosumidores de contenido
 
Pp no 41_2014
Pp no 41_2014Pp no 41_2014
Pp no 41_2014
 

Similar to Understandable Content and Controls

Similar to Understandable Content and Controls (20)

Lecture 2 - Comm Lab: Web @ ITP
Lecture 2 - Comm Lab: Web @ ITPLecture 2 - Comm Lab: Web @ ITP
Lecture 2 - Comm Lab: Web @ ITP
 
Tags in html
Tags in htmlTags in html
Tags in html
 
introduction to web technology
introduction to web technologyintroduction to web technology
introduction to web technology
 
Web Designing
Web DesigningWeb Designing
Web Designing
 
AK html
AK  htmlAK  html
AK html
 
HTML + CSS
HTML + CSSHTML + CSS
HTML + CSS
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style Sheets
 
Html Expression Web
Html Expression WebHtml Expression Web
Html Expression Web
 
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
 
Html ppt
Html pptHtml ppt
Html ppt
 
Html intro
Html introHtml intro
Html intro
 
HTML5 Fundamentals
HTML5 FundamentalsHTML5 Fundamentals
HTML5 Fundamentals
 
Krazykoder struts2 ui_tags
Krazykoder struts2 ui_tagsKrazykoder struts2 ui_tags
Krazykoder struts2 ui_tags
 
Lecture1 B Frames&Forms
Lecture1 B  Frames&FormsLecture1 B  Frames&Forms
Lecture1 B Frames&Forms
 
Michael(tm) Smith ED09 presentation
Michael(tm) Smith ED09 presentationMichael(tm) Smith ED09 presentation
Michael(tm) Smith ED09 presentation
 
Block2 Session2 Presentation
Block2 Session2 PresentationBlock2 Session2 Presentation
Block2 Session2 Presentation
 
ImplementingChangeTrackingAndFlagging
ImplementingChangeTrackingAndFlaggingImplementingChangeTrackingAndFlagging
ImplementingChangeTrackingAndFlagging
 
Lect_html1
Lect_html1Lect_html1
Lect_html1
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
AK css
AK cssAK css
AK css
 

Recently uploaded

Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Bhuvaneswari Subramani
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 

Recently uploaded (20)

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 

Understandable Content and Controls

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.