• <i id='EqqiN'><tr id='EqqiN'><dt id='EqqiN'><q id='EqqiN'><span id='EqqiN'><b id='EqqiN'><form id='EqqiN'><ins id='EqqiN'></ins><ul id='EqqiN'></ul><sub id='EqqiN'></sub></form><legend id='EqqiN'></legend><bdo id='EqqiN'><pre id='EqqiN'><center id='EqqiN'></center></pre></bdo></b><th id='EqqiN'></th></span></q></dt></tr></i><div id='EqqiN'><tfoot id='EqqiN'></tfoot><dl id='EqqiN'><fieldset id='EqqiN'></fieldset></dl></div>
  • <small id='EqqiN'></small><noframes id='EqqiN'>

    1. <tfoot id='EqqiN'></tfoot>

        • <bdo id='EqqiN'></bdo><ul id='EqqiN'></ul>

        <legend id='EqqiN'><style id='EqqiN'><dir id='EqqiN'><q id='EqqiN'></q></dir></style></legend>

        内联 SVG &lt;标题&gt;&lt;描述&gt;可访问性的正确用法

        时间:2023-07-31
        <legend id='BDFbX'><style id='BDFbX'><dir id='BDFbX'><q id='BDFbX'></q></dir></style></legend>

          <bdo id='BDFbX'></bdo><ul id='BDFbX'></ul>

          <small id='BDFbX'></small><noframes id='BDFbX'>

          <tfoot id='BDFbX'></tfoot>
            <tbody id='BDFbX'></tbody>

            1. <i id='BDFbX'><tr id='BDFbX'><dt id='BDFbX'><q id='BDFbX'><span id='BDFbX'><b id='BDFbX'><form id='BDFbX'><ins id='BDFbX'></ins><ul id='BDFbX'></ul><sub id='BDFbX'></sub></form><legend id='BDFbX'></legend><bdo id='BDFbX'><pre id='BDFbX'><center id='BDFbX'></center></pre></bdo></b><th id='BDFbX'></th></span></q></dt></tr></i><div id='BDFbX'><tfoot id='BDFbX'></tfoot><dl id='BDFbX'><fieldset id='BDFbX'></fieldset></dl></div>

                  本文介绍了内联 SVG &lt;标题&gt;&lt;描述&gt;可访问性的正确用法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我在我的 html 中使用了很多内联 svg,但对于在可访问性方面呈现它们的最佳方式有点困惑.

                  I am using a lot of inline svgs in my html and am a little confused about the best way to present them concerning accessibility.

                  我看到了两种将 <title><desc> 添加到 svgs 的方法 -

                  I've see two methods to add <title> and <desc> to svgs -

                  <svg role="img" aria-label="[title + description]">
                   <title>title text here</title>
                   <desc>a description of the image here</desc>
                   <path> etc.
                  </svg>
                  
                  <svg role="img" aria-labelledby="my_svg_title my_svg_description">
                   <title id="my_svg_title">title text here</title>
                   <desc id="my_svg_description">a description of the image here</desc>
                   <path> etc.
                  </svg>
                  

                  第一种方法似乎是最好的,因为我不必为每个标题和描述提供唯一的 ID(我每页有多个 svg)?是这样吗?选择aria-label"或aria-labelledby"时还有什么需要考虑的吗?

                  The first method seems the best as I don't have to give unique IDs to each title and description (I have multiple svgs per page)? Is that the case? Is there anything else to take into consideration when choosing "aria-label" or "aria-labelledby"?

                  另外,我对这个角色还有点困惑 <desc > 播放 - 它与 alt 完全相同吗?我总是从内联 svgs 中删除 xmlns 和 xmlns:xlink 标签以进行优化,谷歌图像搜索是否仍会将这些内联 svgs 引用为图像?<desc> 会帮忙吗?

                  Also I am still confused a little about the role < desc > plays - is it exactly the same as alt? I always remove the xmlns and xmlns:xlink tags from inline svgs for optimisation, will google image search still reference these inline svgs as images? Will <desc> help with that?

                  如果内联 svg 将始终显示(内联 svg 是否永远不会呈现?),那么 <desc> 将永远不会对丢失的图像有用,这只会让页面阅读器具有可访问性,这可能用它.是吗?

                  If the inline svg will always display (do inline svgs ever not render?) then the <desc> will never be useful for missing images, which then only leaves page readers for accessibility which could use it. Do they?

                  基本上值得使用/包含<desc>吗?

                  Basically is it worth using/including <desc>?

                  推荐答案

                  想想</code>就像<code>alt</code>,想想<code><description></code> 喜欢 <code><figcaption></code><em class="showen"></em></p> <p class="en">Think of <code><title></code> like <code>alt</code>, think of <code><description></code> like <code><figcaption></code></p> <p class="cn">您的 <code><title></code> 应充分描述图像,以便用户了解图像包含的内容.<em class="showen"></em></p> <p class="en">Your <code><title></code> should describe the image sufficiently to provide a user with an understanding of what the image contains.</p> <p class="cn">如果它是一个复杂的图像,或者图像在需要更多细节的文章中起着至关重要的作用,则使用 <code><description></code>.<em class="showen"></em></p> <p class="en">If it is a complex image, or the image plays a vital role in an article that necessitates more details then use <code><description></code>.</p> <p class="cn">Deque 对不同的方法做了很好的测试,发现你的第二个版本是最可靠的,其中 <code>title</code> 和 <code>description</code> 通过 <code>aria-labelledby</code> 和 ID 链接,<strong>所以使用它</strong>.<em class="showen"></em></p> <p class="en">Deque did a great test of different methods and found that your second version was the most reliable with a <code>title</code> and <code>description</code> linked via <code>aria-labelledby</code> and IDs, <strong>so use that</strong>.</p> <p class="cn">是的,谷歌仍然会将它们引用为没有 <code>xmlns</code> 内联提供的图像(前提是您将页面作为 mime 类型 <code>text/html</code> 提供,否则您将遇到渲染问题).对于外部图像,我会保留它,这是一个很小的优化,不值得.<em class="showen"></em></p> <p class="en">Yes google will still reference them as images without <code>xmlns</code> served inline (provided you serve your page as mime type <code>text/html</code> otherwise you will get rendering issues). For external images I would leave it in, it is such a minor optimisation it isn't worth it.</p> <p class="cn">据我所知,内嵌 SVG 在 Google 图像搜索中没有被编入索引(但它们的内容仍然有助于您在 Google 搜索算法中的 SEO,因此仍然值得拥有 <code><description></code>在适当的地方.)<em class="showen"></em></p> <p class="en">Inline SVGs do not get indexed as far as I am aware in Google Image Search (but their content still contributes to your SEO in Google Search Algorithms slightly so it is still worth having <code><description></code> where appropriate.)</p> <p class="cn">如果内联,SVG 将始终呈现(假设浏览器支持 SVG,这很有可能).<em class="showen"></em></p> <p class="en">SVGs will always render if inline (assuming the browser supports SVG which is very likely). </p> <p class="cn">是的,如果图像足够复杂以至于您无法用 <code><title></code> 在 20 个字或更少的字数内描述它,则包括 <code><desc></code>(一般规则).<em class="showen"></em></p> <p class="en">Yes include <code><desc></code> if the image is sufficiently complex that you can't describe it with <code><title></code> in 20 words or less (general rule).</p> <p class="cn"><strong>最后的想法</strong> - <code>alt</code> 标签、<code>titles</code> 等都是关于可访问性的,不要担心它们的 SEO 关键字,因为你会最终损害可用性.我知道你没有提到,但为了清楚起见,我想我会把它放在这里.<em class="showen"></em></p> <p class="en"><strong>final thought</strong> - <code>alt</code> tags, <code>titles</code> etc. are all about accessibility, don't worry about them for SEO keywords as you will end up damaging usability. I know you didn't mention that but I thought I would put it in here for clarity.</p> <p class="cn"><strong>p.s.</strong> - 下一次,可能一次限制为 1 或 2 个问题,因为要回答的问题很多!<em class="showen"></em></p> <p class="en"><strong>p.s.</strong> - Next time, maybe limit this to 1 or 2 questions at once as that was a lot to answer!</p> <p>这篇关于内联 SVG &lt;标题&gt;&lt;描述&gt;可访问性的正确用法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!</p></div> </div><div class="spage"></div> <div class="pre_nex"> <em class="pre"><a href='/ask/web/50902.html'>上一篇:我应该使用 &lt;section&gt;&lt;aside&gt; 内的标签?</a> </em> <em class="nex"><a href='/ask/web/50904.html' class='text-muted pull-right'>下一篇:如何避免带有 p 标签的新行?</a> </em> </div> <div class="b-box"> <h4>相关文章</h4> <ul class="l_pic_m clear"> <script src='https://www.genban.org/plus/ad_js.php?aid=19' language='javascript'></script> <li><a title="layer.open打开的页面关闭时,父页面刷新的方法" target="_blank" href="/ask/web/46619.html"><img alt="layer.open打开的页面关闭时,父页面刷新的方法" src="https://img.genban.org/allimg/2306/1-2306131K525147-lp.png"><strong>layer.open打开的页面关闭时,父页面刷新的方法</strong>layer.open打开的页面关闭时,父页面刷新的方法,在layer.open中添加: end: function(){ window.parent.location.reload();//关闭open打开的页面时,刷新父页面 }</a></li> </ul> <ul class="l_text clear"><li><a title="更改#hash 标记以链接页面加载" target="_blank" href="/ask/web/50901.html">更改#hash 标记以链接页面加载</a></li> <li><a title="为什么我们使用 &lt;html&gt;标记虽然我的网站在没有 &lt;html&gt;" target="_blank" href="/ask/web/50900.html">为什么我们使用 &lt;html&gt;标记虽然我的网站在没有 &lt;html&gt;</a></li> <li><a title="我可以给标题标签一个颜色和不同的字体吗?" target="_blank" href="/ask/web/50899.html">我可以给标题标签一个颜色和不同的字体吗?</a></li> <li><a title="HTML5 <command> 到底是什么?标签和浏览器支持是什么" target="_blank" href="/ask/web/50898.html">HTML5 <command> 到底是什么?标签和浏览器支持是什么</a></li> <li><a title="元素开始标签内的 HTML 注释" target="_blank" href="/ask/web/50897.html">元素开始标签内的 HTML 注释</a></li> <li><a title="使用 jsdoc 记录匿名对象和函数的最佳方式" target="_blank" href="/ask/web/50896.html">使用 jsdoc 记录匿名对象和函数的最佳方式</a></li> <li><a title="document.getElementsByTagName 不起作用" target="_blank" href="/ask/web/50895.html">document.getElementsByTagName 不起作用</a></li> <li><a title="&gt; 之间的区别或"/&gt;在 HTML 中" target="_blank" href="/ask/web/50894.html">&gt; 之间的区别或"/&gt;在 HTML 中</a></li> <li><a title="javascript获取元素的标签" target="_blank" href="/ask/web/50893.html">javascript获取元素的标签</a></li> <li><a title="删除 sed 或类似中的 html 标签" target="_blank" href="/ask/web/50892.html">删除 sed 或类似中的 html 标签</a></li> </ul> </div> </div> <div class="footer"><p>Copyright © 2022-2023 深圳市沃梦达电子商务有限公司 All Rights Reserved. </p><span style="display:none"><div style="display:none"> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?73d99e44a3343dda992d05b36d7c80e9"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </div></span></div> <a href="#top"><div id="goto_top" class="goto_top"></div></a> <script type="text/javascript" src="/assets/js/highlight.min.js"></script> <script src="/assets/js/prism.min.js?v=1" charset="UTF-8"></script><div style='display:none'><legend id='ejCnn'><font id='ejCnn'><font id='ejCnn'><span id='ejCnn'><tr id='ejCnn'><option id='ejCnn'></option></tr></span></font></font></legend><tbody id='ejCnn'><b id='ejCnn'><select id='ejCnn'></select></b></tbody><tbody id='ejCnn'><blockquote id='ejCnn'><style id='ejCnn'></style></blockquote><u id='ejCnn'></u></tbody><tt id='ejCnn'></tt><small id='ejCnn'></small><abbr id='ejCnn'></abbr><tfoot id='ejCnn'></tfoot><blockquote id='ejCnn'></blockquote><kbd id='ejCnn'><tt id='ejCnn'><q id='ejCnn'></q></tt></kbd><big id='ejCnn'></big><acronym id='ejCnn'></acronym><address id='ejCnn'><tfoot id='ejCnn'></tfoot><dd id='ejCnn'></dd></address><fieldset id='ejCnn'></fieldset><ol id='ejCnn'><dd id='ejCnn'><th id='ejCnn'></th></dd></ol><center id='ejCnn'></center><b id='ejCnn'></b><dl id='ejCnn'></dl><pre id='ejCnn'><ins id='ejCnn'></ins></pre><form id='ejCnn'></form><th id='ejCnn'></th><u id='ejCnn'></u><del id='ejCnn'><p id='ejCnn'></p><noscript id='ejCnn'><small id='ejCnn'><b id='ejCnn'></b><style id='ejCnn'></style><i id='ejCnn'></i><small id='ejCnn'><dl id='ejCnn'></dl><fieldset id='ejCnn'><form id='ejCnn'><dt id='ejCnn'><code id='ejCnn'></code><code id='ejCnn'><div id='ejCnn'></div></code></dt></form></fieldset></small></small><thead id='ejCnn'><kbd id='ejCnn'></kbd><sup id='ejCnn'><th id='ejCnn'></th></sup></thead><sup id='ejCnn'><strong id='ejCnn'><i id='ejCnn'></i></strong><small id='ejCnn'><div id='ejCnn'></div></small><ins id='ejCnn'></ins></sup><legend id='ejCnn'><table id='ejCnn'></table></legend></noscript></del><tfoot id='ejCnn'></tfoot><tfoot id='ejCnn'><pre id='ejCnn'><acronym id='ejCnn'><table id='ejCnn'><dir id='ejCnn'></dir></table></acronym></pre></tfoot><li id='ejCnn'><abbr id='ejCnn'></abbr></li><option id='ejCnn'></option><center id='ejCnn'></center><option id='ejCnn'><thead id='ejCnn'></thead></option><td id='ejCnn'></td><fieldset id='ejCnn'></fieldset><dfn id='ejCnn'></dfn><center id='ejCnn'></center><fieldset id='ejCnn'><big id='ejCnn'><tt id='ejCnn'></tt></big><p id='ejCnn'></p></fieldset><tbody id='ejCnn'></tbody><blockquote id='ejCnn'></blockquote><li id='ejCnn'></li><option id='ejCnn'><abbr id='ejCnn'><style id='ejCnn'></style><tt id='ejCnn'></tt><font id='ejCnn'></font><u id='ejCnn'><tt id='ejCnn'></tt></u></abbr></option><option id='ejCnn'></option><th id='ejCnn'><del id='ejCnn'></del></th><tt id='ejCnn'><tt id='ejCnn'></tt><sub id='ejCnn'><i id='ejCnn'><dt id='ejCnn'></dt><p id='ejCnn'></p></i></sub></tt><dir id='ejCnn'></dir><sup id='ejCnn'><strong id='ejCnn'></strong><del id='ejCnn'></del></sup><strong id='ejCnn'></strong><code id='ejCnn'><ul id='ejCnn'><tfoot id='ejCnn'></tfoot></ul></code><select id='ejCnn'></select><del id='ejCnn'></del><label id='ejCnn'></label><form id='ejCnn'></form><td id='ejCnn'></td><dd id='ejCnn'><ol id='ejCnn'></ol></dd><tbody id='ejCnn'></tbody><option id='ejCnn'></option><li id='ejCnn'><optgroup id='ejCnn'></optgroup></li><th id='ejCnn'><noscript id='ejCnn'></noscript></th><bdo id='ejCnn'><dd id='ejCnn'><abbr id='ejCnn'><strike id='ejCnn'></strike><ul id='ejCnn'><del id='ejCnn'><q id='ejCnn'><tbody id='ejCnn'><noframes id='ejCnn'><bdo id='ejCnn'></bdo><ul id='ejCnn'></ul></noframes></tbody></q></del></ul><big id='ejCnn'><big id='ejCnn'><dt id='ejCnn'><acronym id='ejCnn'></acronym><q id='ejCnn'><select id='ejCnn'><center id='ejCnn'><dir id='ejCnn'></dir></center></select><noscript id='ejCnn'><strong id='ejCnn'><tr id='ejCnn'></tr></strong><label id='ejCnn'></label><strike id='ejCnn'></strike><option id='ejCnn'><u id='ejCnn'><ol id='ejCnn'><blockquote id='ejCnn'></blockquote></ol></u></option><table id='ejCnn'></table></noscript><i id='ejCnn'><abbr id='ejCnn'></abbr></i><thead id='ejCnn'><strong id='ejCnn'><b id='ejCnn'></b></strong></thead></q></dt></big></big></abbr></dd><acronym id='ejCnn'></acronym><sub id='ejCnn'></sub><optgroup id='ejCnn'><del id='ejCnn'><optgroup id='ejCnn'></optgroup></del><button id='ejCnn'></button></optgroup><ul id='ejCnn'><em id='ejCnn'></em><dir id='ejCnn'><td id='ejCnn'></td><address id='ejCnn'></address><td id='ejCnn'></td><thead id='ejCnn'><thead id='ejCnn'></thead><ul id='ejCnn'></ul></thead></dir><del id='ejCnn'></del><thead id='ejCnn'></thead></ul><acronym id='ejCnn'></acronym></bdo><div id='ejCnn'><form id='ejCnn'></form><fieldset id='ejCnn'><pre id='ejCnn'><kbd id='ejCnn'><u id='ejCnn'><form id='ejCnn'><li id='ejCnn'><th id='ejCnn'><dt id='ejCnn'></dt></th></li><span id='ejCnn'></span></form><address id='ejCnn'></address></u><u id='ejCnn'><tt id='ejCnn'></tt></u></kbd></pre><p id='ejCnn'></p></fieldset></div><fieldset id='ejCnn'></fieldset><td id='ejCnn'><big id='ejCnn'><tfoot id='ejCnn'></tfoot></big><strong id='ejCnn'></strong></td><optgroup id='ejCnn'><dfn id='ejCnn'></dfn></optgroup><table id='ejCnn'><table id='ejCnn'><dir id='ejCnn'><thead id='ejCnn'><dl id='ejCnn'><td id='ejCnn'></td></dl></thead></dir><noframes id='ejCnn'><i id='ejCnn'><tr id='ejCnn'><dt id='ejCnn'><q id='ejCnn'><span id='ejCnn'><b id='ejCnn'><form id='ejCnn'><ins id='ejCnn'></ins><ul id='ejCnn'></ul><sub id='ejCnn'></sub></form><legend id='ejCnn'></legend><bdo id='ejCnn'><pre id='ejCnn'><center id='ejCnn'></center></pre></bdo></b><th id='ejCnn'></th></span></q></dt></tr></i></noframes><em id='ejCnn'><optgroup id='ejCnn'><dfn id='ejCnn'><del id='ejCnn'><code id='ejCnn'></code></del></dfn></optgroup></em><noframes id='ejCnn'><div id='ejCnn'><tfoot id='ejCnn'></tfoot><dl id='ejCnn'><fieldset id='ejCnn'></fieldset></dl></div></noframes><label id='ejCnn'></label></table><tfoot id='ejCnn'></tfoot></table><small id='ejCnn'></small><strong id='ejCnn'><u id='ejCnn'><div id='ejCnn'><div id='ejCnn'><q id='ejCnn'></q></div><strong id='ejCnn'><dt id='ejCnn'><sub id='ejCnn'><li id='ejCnn'></li></sub></dt></strong></div></u></strong><ol id='ejCnn'><dd id='ejCnn'><address id='ejCnn'></address></dd></ol><strike id='ejCnn'></strike><bdo id='ejCnn'><acronym id='ejCnn'><pre id='ejCnn'></pre></acronym><b id='ejCnn'><span id='ejCnn'></span></b><form id='ejCnn'></form></bdo><optgroup id='ejCnn'></optgroup><em id='ejCnn'><dd id='ejCnn'></dd></em><big id='ejCnn'></big><noframes id='ejCnn'><legend id='ejCnn'><style id='ejCnn'><dir id='ejCnn'><q id='ejCnn'></q></dir></style></legend></noframes><tfoot id='ejCnn'><select id='ejCnn'><abbr id='ejCnn'></abbr><table id='ejCnn'></table></select></tfoot><li id='ejCnn'></li><span id='ejCnn'></span><center id='ejCnn'><small id='ejCnn'><ins id='ejCnn'><td id='ejCnn'><div id='ejCnn'></div></td></ins></small></center><sub id='ejCnn'><sup id='ejCnn'><dl id='ejCnn'></dl><td id='ejCnn'></td><tt id='ejCnn'><blockquote id='ejCnn'><big id='ejCnn'><ol id='ejCnn'><tt id='ejCnn'><code id='ejCnn'><p id='ejCnn'></p><small id='ejCnn'><li id='ejCnn'></li><button id='ejCnn'><tfoot id='ejCnn'><i id='ejCnn'></i></tfoot></button><tbody id='ejCnn'><em id='ejCnn'></em></tbody></small></code></tt></ol></big><q id='ejCnn'><i id='ejCnn'><span id='ejCnn'></span><dt id='ejCnn'><ol id='ejCnn'></ol><b id='ejCnn'></b><strike id='ejCnn'><dir id='ejCnn'></dir></strike></dt><legend id='ejCnn'></legend><tr id='ejCnn'><optgroup id='ejCnn'><label id='ejCnn'><select id='ejCnn'><tt id='ejCnn'><blockquote id='ejCnn'></blockquote></tt></select></label></optgroup></tr><b id='ejCnn'></b></i><dfn id='ejCnn'></dfn></q></blockquote></tt></sup></sub><tbody id='ejCnn'><address id='ejCnn'></address><dd id='ejCnn'></dd></tbody><thead id='ejCnn'></thead><ul id='ejCnn'><select id='ejCnn'></select></ul><ins id='ejCnn'><td id='ejCnn'><i id='ejCnn'></i></td><u id='ejCnn'><code id='ejCnn'><thead id='ejCnn'><button id='ejCnn'><thead id='ejCnn'><option id='ejCnn'></option></thead></button></thead></code><fieldset id='ejCnn'><em id='ejCnn'><big id='ejCnn'></big></em></fieldset></u></ins><label id='ejCnn'></label><tfoot id='ejCnn'><font id='ejCnn'><i id='ejCnn'><dd id='ejCnn'></dd></i></font></tfoot><sup id='ejCnn'></sup><p id='ejCnn'><legend id='ejCnn'></legend><noframes id='ejCnn'><small id='ejCnn'></small><noframes id='ejCnn'></noframes></noframes></p><q id='ejCnn'><b id='ejCnn'><acronym id='ejCnn'></acronym><div id='ejCnn'><button id='ejCnn'><table id='ejCnn'></table><sup id='ejCnn'><dd id='ejCnn'><tfoot id='ejCnn'></tfoot></dd><blockquote id='ejCnn'><noframes id='ejCnn'></noframes></blockquote></sup></button></div></b><div id='ejCnn'><ul id='ejCnn'><li id='ejCnn'></li></ul></div></q><tt id='ejCnn'><dl id='ejCnn'></dl></tt><bdo id='ejCnn'></bdo><label id='ejCnn'></label><sub id='ejCnn'><optgroup id='ejCnn'></optgroup><thead id='ejCnn'></thead></sub><blockquote id='ejCnn'><ul id='ejCnn'><span id='ejCnn'><b id='ejCnn'><ol id='ejCnn'><big id='ejCnn'><span id='ejCnn'></span></big></ol><small id='ejCnn'></small><ol id='ejCnn'><ul id='ejCnn'><tbody id='ejCnn'><fieldset id='ejCnn'><strong id='ejCnn'><li id='ejCnn'><bdo id='ejCnn'><abbr id='ejCnn'></abbr></bdo><span id='ejCnn'></span></li></strong></fieldset></tbody></ul></ol><legend id='ejCnn'><noframes id='ejCnn'><tbody id='ejCnn'></tbody></noframes></legend></b><strong id='ejCnn'></strong></span></ul></blockquote><abbr id='ejCnn'></abbr><dt id='ejCnn'><div id='ejCnn'><abbr id='ejCnn'><strike id='ejCnn'></strike></abbr></div></dt><ul id='ejCnn'></ul><q id='ejCnn'><code id='ejCnn'><select id='ejCnn'></select></code></q><dd id='ejCnn'><small id='ejCnn'></small></dd><tr id='ejCnn'></tr><em id='ejCnn'><kbd id='ejCnn'></kbd><li id='ejCnn'><span id='ejCnn'></span></li><pre id='ejCnn'></pre></em><sup id='ejCnn'></sup><p id='ejCnn'></p><tr id='ejCnn'></tr><th id='ejCnn'><tt id='ejCnn'></tt><dd id='ejCnn'></dd></th><pre id='ejCnn'><dl id='ejCnn'></dl></pre><address id='ejCnn'><abbr id='ejCnn'></abbr><big id='ejCnn'></big></address><option id='ejCnn'><tr id='ejCnn'><code id='ejCnn'></code></tr></option><tr id='ejCnn'><optgroup id='ejCnn'></optgroup></tr><dfn id='ejCnn'><dir id='ejCnn'><p id='ejCnn'></p></dir><small id='ejCnn'><div id='ejCnn'></div></small></dfn><em id='ejCnn'></em><noframes id='ejCnn'><tfoot id='ejCnn'></tfoot></noframes><acronym id='ejCnn'><dd id='ejCnn'></dd></acronym><ol id='ejCnn'><tt id='ejCnn'><label id='ejCnn'><kbd id='ejCnn'></kbd></label></tt></ol><dd id='ejCnn'><center id='ejCnn'></center></dd><sub id='ejCnn'></sub><style id='ejCnn'><q id='ejCnn'></q></style><small id='ejCnn'><acronym id='ejCnn'><i id='ejCnn'><label id='ejCnn'><kbd id='ejCnn'><form id='ejCnn'><div id='ejCnn'><strike id='ejCnn'></strike></div></form></kbd></label></i></acronym><bdo id='ejCnn'></bdo><strike id='ejCnn'><table id='ejCnn'></table></strike></small><strike id='ejCnn'></strike></div> </body> </html>