SlideShare uma empresa Scribd logo
1 de 3
Baixar para ler offline
Acessibilidade
Diogo Garcia e Thais Cristina
Tabelas
Nesse post iremos utilizar o as tags thead e tbody, para posteriormente
testar no sintetizador de voz NVDA.
1º Tabela: thead
<html>
<body>
<table border="1">
<thead>
<caption>Nomes</caption>
</thead>
<tr><td>Diogo</td> <td>Garcia</td> </tr>
<tr><td>Roger</td> <td>Federer</td> </tr>
<tr><td>Rafael</td> <td>Nadal</td> </tr>
<tr><td>Novak</td> <td>Djokovic</td> </tr>
</table>
</body>
</html>
2º Tabela: tbody
<Doctype!>
<html>
<body>
<table border="1">
<caption>Linguagens</caption>
<thead>
<tr><td>Tipos de linguagem</td></tr>
</thead>
<tbody>
<tr><td>CSS</td> <td>Javascript</td></tr>
<tr><td>HTML</td> <td>C </td> </tr>
<tr><td>JavaScript</td> <td>C++</td> </tr>
<tr><td>PHP</td> <td>Java</td> </tr>
</tbody>
</table>
</body>
</html>
Quando utilizamos o NVDA no navegador, ouvimos quantas colunas e quantas linhas têm na tabela
nos dois exemplos apresentados. Já quando exibimos o código fonte da página, obtivemos o seguinte
resultado, o NDVA informa cada linha e tag do código HTML.
Conclui-se que através de voz sintética, o NVDA permite que usuários cegos ou com deficiência
visual possam acessar e interagir com qualquer página HTML5 e tabela utilizando as tags aqui apresentada.
Teve uma dinâmica diferenciada pois propiciou uma experiência, como os usuários com deficiência passam
quando utilizam a internet.

Mais conteúdo relacionado

Destaque

라이브 중에 실행할 쿼리 작성하기
라이브 중에 실행할 쿼리 작성하기라이브 중에 실행할 쿼리 작성하기
라이브 중에 실행할 쿼리 작성하기진화 손
 
디자인패턴
디자인패턴디자인패턴
디자인패턴진화 손
 
00 新入社員pc講習
00 新入社員pc講習00 新入社員pc講習
00 新入社員pc講習Kei Ishiguro
 
윈속 네트워크 프로그래밍2
윈속 네트워크 프로그래밍2윈속 네트워크 프로그래밍2
윈속 네트워크 프로그래밍2진화 손
 
Independent Stardom
Independent StardomIndependent Stardom
Independent Stardomethan tussey
 
Inlovingmemory 120304092812-phpapp02
Inlovingmemory 120304092812-phpapp02Inlovingmemory 120304092812-phpapp02
Inlovingmemory 120304092812-phpapp02Simona Converso
 
Changing Dynamics of IT and Marketing Teams in the Procurement of Marketing T...
Changing Dynamics of IT and Marketing Teams in the Procurement of Marketing T...Changing Dynamics of IT and Marketing Teams in the Procurement of Marketing T...
Changing Dynamics of IT and Marketing Teams in the Procurement of Marketing T...Anurag Anwariya
 

Destaque (19)

라이브 중에 실행할 쿼리 작성하기
라이브 중에 실행할 쿼리 작성하기라이브 중에 실행할 쿼리 작성하기
라이브 중에 실행할 쿼리 작성하기
 
Go
GoGo
Go
 
디자인패턴
디자인패턴디자인패턴
디자인패턴
 
00 新入社員pc講習
00 新入社員pc講習00 新入社員pc講習
00 新入社員pc講習
 
윈속 네트워크 프로그래밍2
윈속 네트워크 프로그래밍2윈속 네트워크 프로그래밍2
윈속 네트워크 프로그래밍2
 
Independent Stardom
Independent StardomIndependent Stardom
Independent Stardom
 
Inlovingmemory 120304092812-phpapp02
Inlovingmemory 120304092812-phpapp02Inlovingmemory 120304092812-phpapp02
Inlovingmemory 120304092812-phpapp02
 
Silent night
Silent nightSilent night
Silent night
 
Travestimento
TravestimentoTravestimento
Travestimento
 
Changing Dynamics of IT and Marketing Teams in the Procurement of Marketing T...
Changing Dynamics of IT and Marketing Teams in the Procurement of Marketing T...Changing Dynamics of IT and Marketing Teams in the Procurement of Marketing T...
Changing Dynamics of IT and Marketing Teams in the Procurement of Marketing T...
 
sanad
sanadsanad
sanad
 
Addobbi natalizi
Addobbi nataliziAddobbi natalizi
Addobbi natalizi
 
Nardoraccolta 114
Nardoraccolta 114Nardoraccolta 114
Nardoraccolta 114
 
Maschere veneziane-2005
Maschere veneziane-2005Maschere veneziane-2005
Maschere veneziane-2005
 
Solo in-india
Solo in-indiaSolo in-india
Solo in-india
 
Egitto deserto-bianco
Egitto deserto-biancoEgitto deserto-bianco
Egitto deserto-bianco
 
acls
aclsacls
acls
 
Vediamo Se Sei Sveglio
Vediamo Se Sei SveglioVediamo Se Sei Sveglio
Vediamo Se Sei Sveglio
 
itls
itlsitls
itls
 

Acessibilidade de tabelas com thead e tbody

  • 2. Tabelas Nesse post iremos utilizar o as tags thead e tbody, para posteriormente testar no sintetizador de voz NVDA. 1º Tabela: thead <html> <body> <table border="1"> <thead> <caption>Nomes</caption> </thead> <tr><td>Diogo</td> <td>Garcia</td> </tr> <tr><td>Roger</td> <td>Federer</td> </tr> <tr><td>Rafael</td> <td>Nadal</td> </tr> <tr><td>Novak</td> <td>Djokovic</td> </tr> </table> </body> </html> 2º Tabela: tbody <Doctype!> <html> <body>
  • 3. <table border="1"> <caption>Linguagens</caption> <thead> <tr><td>Tipos de linguagem</td></tr> </thead> <tbody> <tr><td>CSS</td> <td>Javascript</td></tr> <tr><td>HTML</td> <td>C </td> </tr> <tr><td>JavaScript</td> <td>C++</td> </tr> <tr><td>PHP</td> <td>Java</td> </tr> </tbody> </table> </body> </html> Quando utilizamos o NVDA no navegador, ouvimos quantas colunas e quantas linhas têm na tabela nos dois exemplos apresentados. Já quando exibimos o código fonte da página, obtivemos o seguinte resultado, o NDVA informa cada linha e tag do código HTML. Conclui-se que através de voz sintética, o NVDA permite que usuários cegos ou com deficiência visual possam acessar e interagir com qualquer página HTML5 e tabela utilizando as tags aqui apresentada. Teve uma dinâmica diferenciada pois propiciou uma experiência, como os usuários com deficiência passam quando utilizam a internet.