SlideShare a Scribd company logo
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

Html Intro2
Html Intro2Html Intro2
Html Intro2mlackner
 
Html
HtmlHtml
The Basics of (X)HTML Tags
The Basics of (X)HTML TagsThe Basics of (X)HTML Tags
The Basics of (X)HTML Tags
LearningNerd
 
Html
HtmlHtml
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
veena parihar
 
Html introduction
Html introductionHtml introduction
Html introduction
Dalia Elbadry
 
Html ppt
Html pptHtml ppt
Html ppt
sanjay joshi
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
Jayapal Reddy Nimmakayala
 
Intro to html
Intro to htmlIntro to html
Intro to html
anshuman rahi
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to htmlvikasgaur31
 
Kml Basics Chpt 2 Placemarks
Kml Basics Chpt  2   PlacemarksKml Basics Chpt  2   Placemarks
Kml Basics Chpt 2 Placemarkstcooper66
 

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 World
Greg 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 Accessibility
Greg 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 lenguas
Hé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 contenido
Héctor Rios
 
Pp no 41_2014
Pp no 41_2014Pp no 41_2014
Pp no 41_2014
novawijanarko
 

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

Lecture 2 - Comm Lab: Web @ ITP
Lecture 2 - Comm Lab: Web @ ITPLecture 2 - Comm Lab: Web @ ITP
Lecture 2 - Comm Lab: Web @ ITP
yucefmerhi
 
introduction to web technology
introduction to web technologyintroduction to web technology
introduction to web technologyvikram singh
 
AK html
AK  htmlAK  html
AK html
gauravashq
 
HTML + CSS
HTML + CSSHTML + CSS
HTML + CSS
Jorge Zapico
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style SheetsJerome Locson
 
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
jlinabary
 
HTML5 Fundamentals
HTML5 FundamentalsHTML5 Fundamentals
HTML5 Fundamentals
Doncho Minkov
 
Krazykoder struts2 ui_tags
Krazykoder struts2 ui_tagsKrazykoder struts2 ui_tags
Krazykoder struts2 ui_tagsKrazy Koder
 
Michael(tm) Smith ED09 presentation
Michael(tm) Smith ED09 presentationMichael(tm) Smith ED09 presentation
Michael(tm) Smith ED09 presentationMichael(tm) Smith
 
Block2 Session2 Presentation
Block2 Session2 PresentationBlock2 Session2 Presentation
Block2 Session2 Presentation
Michael Gwyther
 
ImplementingChangeTrackingAndFlagging
ImplementingChangeTrackingAndFlaggingImplementingChangeTrackingAndFlagging
ImplementingChangeTrackingAndFlaggingSuite Solutions
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to htmlvikasgaur31
 
AK css
AK cssAK css
AK css
gauravashq
 

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

IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
Abida Shariff
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
Ralf Eggert
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 

Recently uploaded (20)

IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 

Understandable Content and Controls

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