When we talk about the website design, it usually concerns how these websites appear to us visually — how colors and typography work together, how page elements are placed and spaced, and whether navigation links are placed in the right locations. However, not everyone interacts with websites this way, so we need to consider non-visual aspects of design as well.

It’s been estimated that, in the U.S., over有700万人经历视觉残疾这需要“替代方法来从事正常视力的人会使用眼睛进行任何活动。”这些人中的许多人都依靠辅助技术screen readersto experience websites and other digital content. As a designer, developer, and/or website owner, it’s on you to make your website accessible to this portion of your audience.

在本指南中,您将了解屏幕读取器是什么以及它们的工作方式。然后,我将解释一些最佳实践making your website more accessible对于那些使用屏幕阅读器的人来说,以确保您的内容可为每个人提供可用和愉快。

立即下载:免费网站可访问性清单

什么是屏幕阅读器?

A screen reader is a piece of computer software that converts digital text into audible and/or tactile form. Screen readers enable users to interact with their devices in a non-visual manner, and are used primarily by people who are blind or have low vision, as well as those with cognitive limitations that prevent them from viewing onscreen text and media. Many screen readers have additional features to help users navigate web pages, computer applications, and operating system interfaces.

Screen readers are an important and popular assistive technology. They enable the independent use of digital devices by those who otherwise would not be able, or who would face significant difficulty.

While most commonly utilized by people who are blind or who have low vision, screen readers also help those who:

  • experience cognitive difficulties or learning disabilities like dyslexia.
  • experience difficulties reading print.
  • 正在学习一种语言。
  • prefer consuming content auditorily to reading.

有些人也可能会使用屏幕读取器以及他们的视野有限。例如,在依靠屏幕读取器以获取基于文本的内容时,可以在视觉页面上观看网页上的图像和媒体。

How do screen readers work?

屏幕读取器是安装在设备上的软件应用程序(或bob电竞官方下载在某些情况下作为浏览器扩展程序),并与该设备上的其他应用程序一起使用。Windows,MacOS,Linux,iOS和Android都有各种免费和付费屏幕读取器。

用户使用键盘控制其屏幕读取器。屏幕读取器附带一个键盘命令库,该命令告诉屏幕读取器进行诸如开始/停止阅读,跳回去阅读一部分文本,拼写单词,跳过页面的不同部分,移动光标,请移动光标/集中精力,播放媒体文件,或单击链接,按钮或其他交互式元素。

Screen readers can translate text information into two forms, speech and braille. Most commonly, screen readers use text-to-Speech (TTS) technology to read text content aloud in a synthesized human voice. Proficient users of TTS screen readers often increase the reading speed far past what the average person is capable of reading visually.

In addition to TTS, some screen readers can convert onscreen text into braille. For this function, users connect an external device, called a refreshable braille display, which generates braille characters on a pad as the screen reader scans the text. Here’s what a typical refreshable braille display looks like:

a refreshable braille display device to improve screen reader accessibility for users with visual impairments

Image Source

一些用户还喜欢一起使用TTS和刷新的盲文显示器。

屏幕读取器也可用于移动设备。由于大多数智能手机和平板电脑都没有物理键盘,因此这些设备的屏幕读取器依赖于触摸屏交互 - 刷卡,敲击和敲击和敲击 - 以控制播放和导航页面内容。

如何为屏幕阅读器设计您的网站

Given the popularity and importance of screen readers today, website owners and developers need to consider screen reader accessibility when building and maintaining their online properties. This ensures that all visitors have access to the same content and an optimal experience.

Screen readers translate web pages by reading HTML files directly, so everything the reader needs should be included in this file. Here are some basic steps you can take to help screen readers process your pages and make your website easy to navigate for screen reader users. To get the most from this section, we recommend刷在您的HTML上如果你需要。

Structure your HTML with the appropriate tags.

Screen readers use HTML tags to understand the content and regions of the page, and what elements are available for the user to select. For this reason, the most effective way to make your web pages accessible is to structure your HTML code with semantically rich tags.

When we say a tag is “semantically rich,” we mean that the name of the tag itself conveys its purpose to the screen reader. Tags like

,,

,
    ,
      , and在语义上都是丰富的,因为这很明显它们从标签名称本身中是什么 -

      is a paragraph,是一个图像,也是一个。另一方面,and

      tags are generic, and not semantically rich — they could be used to any element. For these tags, you can use ARIA landmarks — we’ll cover those soon.

      以几种原因,以这种方式编写HTML很重要。首先,屏幕读取器允许用户在同一类型的标签之间跳跃。这个常见的用途是标题,这是屏幕读取器用户的重要导航方法。当屏幕阅读器检测到使用

      , for example, it allows users to jump between H2s, similar to how sighted users might scan a page by reading the headings.

      第二,一些HTML元素,例如

      , activate specific screen reader commands. When a screen reader sees the
      tag, it knows to let the user navigate horizontally and vertically through the table with their keyboard. This is why you should avoid making elements that喜欢表,列表或按钮,但使用无与伦比的标签(例如
      ). Instead, use the appropriate tag when possible.

      Finally, a</strong>屏幕阅读器标签也是有用的。用户可以set their screen readers to read the contents of this tag after the page loads to lend further context.</p><h3 style="font-weight: normal;">Indicate language in the <html> tag.</h3><p>A screen reader needs to be told which language a web page is written in, so it knows how to pronounce words to the user with TTS.</p><p>Screen readers will first look for the<strong>lang</strong>attribute inside the<strong><html></strong>tag for page-wide language information. For example, if a page is written in English, its opening<strong><html></strong>tag would read:</p><p></p><pre class="syntax"><code class="html"><br><html lang="en"><br></code></pre><p></p><p>In cases when foreign words appear on the page, the<strong>lang</strong>attribute can be placed inside any other tag, commonly<strong><span></strong>or<strong><p></strong>, to denote a temporary language change:</p><p></p><pre class="syntax"><code class="html"><br><html lang="en"><br><body><br><p>I’m a paragraph in English.</p><br><p>“Hello” in Spanish is <span lang=“es”>hola</span>.</p><br><p lang="fr">Je suis un paragraphe en Français.</p><br></body><br></html><br></code></pre><p></p><h3 style="font-weight: normal;">Use ARIA roles.</h3><p><a rel="noopener" target="_blank" href="https://www.w3.org/WAI/GL/wiki/Using_ARIA_landmarks_to_identify_regions_of_a_page">ARIA roles</a>are values that indicate the function of a page element or region for screen readers. They may be placed inside<strong><div></strong>and<strong><span></strong>带有属性的标签<strong>role</strong>. ARIA roles include<strong>main</strong>,<strong>形式</strong>,<strong>导航</strong>, and<strong>search</strong>.</p><p>例如,如果您想指出链接列表是导航菜单,则可以放置ARIA地标这样的地标:</p><p></p><pre class="syntax"><code class="html"><br><div role=”navigation”><br><ul><br><li>Product</li><br><li>Solutions</li><br><li>About Us</li><br><li>Blog</li><br></ul><br></div><br></code></pre><p></p><p>Here,<strong>角色=“导航”</strong>is the landmark.</p><p>Also note that ARIA landmarks should only be used in<strong><div></strong>and<strong><span></strong>tags, as these are generic tags and not semantically rich. Tags like<strong><menu></strong>,<strong><nav></strong>,<strong><形式></strong>, and<strong><main></strong>不应该使用ARIA地标,作为聚氨酯吗rpose is already established with their names.</p><p>While not all screen readers detect ARIA landmarks, it’s good practice to use them in any page region for which the function is unclear from the tag names alone.</p><h3 style="font-weight: normal;">Write descriptive headings and first sentences.</h3><p>Similar to how sighted users skim page content visually, screen reader users can preview headings and paragraphs to see if the content is relevant to them. Therefore, it’s good practice to make your headings as descriptive as you can, and to begin paragraphs in a way that gives readers an understanding of the content to come.</p><h3 style="font-weight: normal;">Use alt text.</h3><p>While it’s certainly a benefit, the main purpose of alternative text isn’t SEO — it’s to give screen readers a captioned alternative for media content. When it encounters an image, video, or other piece of media, a screen reader will default to reading alt text if it is provided. If alt text is not provided, screen readers will ignore the image or read the image file name.</p><p>要使您的页面访问,请始终在每个非文本内容,即图像,视频,<a rel="noopener" target="_blank" href="//www.eigoj.com/website/accessible-icons">图标</a>, and embeds. For instance, suitable alt text for this image...</p><p><img alt="professional baseball player Hank Aaron of the Atlanta Braves swinging a baseball bat in a baseball stadium" src="//www.eigoj.com/hs-fs/hubfs/Google%20Drive%20Integration/How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg?width=650&name=How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg" style="margin-left: auto; width: 650px; margin-right: auto; display: block;" title="" width="650" loading="lazy" srcset="//www.eigoj.com/hs-fs/hubfs/Google%20Drive%20Integration/How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg?width=325&name=How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg 325w, //www.eigoj.com/hs-fs/hubfs/Google%20Drive%20Integration/How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg?width=650&name=How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg 650w, //www.eigoj.com/hs-fs/hubfs/Google%20Drive%20Integration/How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg?width=975&name=How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg 975w, //www.eigoj.com/hs-fs/hubfs/Google%20Drive%20Integration/How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg?width=1300&name=How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg 1300w, //www.eigoj.com/hs-fs/hubfs/Google%20Drive%20Integration/How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg?width=1625&name=How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg 1625w, //www.eigoj.com/hs-fs/hubfs/Google%20Drive%20Integration/How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg?width=1950&name=How%20to%20Design%20Your%20Website%20Screen%20Reader%20Accessibility-1.jpeg 1950w" sizes="(max-width: 650px) 100vw, 650px"></p><p style="font-size: 13px; text-align: center;"><em><a rel="noopener" target="_blank" href="https://baseballhall.org/hall-of-famers/aaron-hank">Image Source</a></em></p><p>...might be:</p><p></p><pre class="syntax"><code class="html"><br>alt="professional baseball player Hank Aaron of the Atlanta Braves swinging a baseball bat in a baseball stadium”<br></code></pre><p></p><p>For more tips on how to optimize your alt text for screen readers and search ranking, see our<a rel="noopener" target="_blank" href="//www.eigoj.com/marketing/image-alt-text">guide to image alt text</a>.</p><h3 style="font-weight: normal;">Use punctuation correctly.</h3><p>Here’s another tip that assists all page visitors, screen-reader-assisted and not. To simulate speech, screen reader TTS pauses for instances of periods, commas, new paragraphs, and other punctuation. For the best experience, make sure you’re implementing punctuation in the proper ways.</p><h3 style="font-weight: normal;">Conduct screen reader accessibility testing.</h3><p>After implementing the measures above, test your web pages with a screen reader to ensure your accessibility measures work properly. You can conduct this testing yourself or recruit an accessibility tester to evaluate your website. You may also try a<a rel="noopener" target="_blank" href="//www.eigoj.com/website/web-accessibility-testing-tools">网络可访问性测试工具</a>支持您的努力。</p><p>If you decide to test your own website, choose a free text editor for your operating system.<a rel="noopener" target="_blank" href="https://www.nvaccess.org/">NV访问</a>是Windows用户的流行选择,而MacOS设备具有<a rel="noopener" target="_blank" href="http://voiceover">VoiceOver</a>屏幕阅读器内置。</p><p>然后,熟悉你的屏幕阅读器and learn all of its basic functions. If you foresee conducting more accessibility testing, commit to developing enough proficiency on your screen reader to navigate websites with the monitor turned off. We also recommend observing experienced screen reader users to understand how these visitors actually interact with your site.</p><h2 style="font-weight: normal;">Designing Accessible Websites for Screen Readers</h2><p>By coding and designing your web pages in accordance with<a rel="noopener" target="_blank" href="//www.eigoj.com/website/web-accessibility-guidelines">accessibility principles</a>, not only do you make your website enjoyable for folks using screen readers — you also show that you care about your user base, and strive to deliver the best experience possible for everyone. In other words, it’s simply doing the right thing for those who matter most to your business.</p><p> <!--HubSpot Call-to-Action Code --><span class="hs-cta-wrapper" id="hs-cta-wrapper-da867a56-af18-4d2d-802b-c65ff731d340"><span class="hs-cta-node hs-cta-da867a56-af18-4d2d-802b-c65ff731d340" id="hs-cta-da867a56-af18-4d2d-802b-c65ff731d340"> <!--[if lte IE 8]><div id="hs-cta-ie-element"></div><![endif]--><a href="https://cta-redirect.hubspot.com/cta/redirect/53/da867a56-af18-4d2d-802b-c65ff731d340" target="_blank" rel="noopener"><img class="hs-cta-img" id="hs-cta-img-da867a56-af18-4d2d-802b-c65ff731d340" style="border-width:0px;margin: 0 auto; display: block; margin-top: 20px; margin-bottom: 20px" src="https://no-cache.hubspot.com/cta/default/53/da867a56-af18-4d2d-802b-c65ff731d340.png" alt="New Call-to-action" align="middle"></a></span></span> <!-- end HubSpot Call-to-Action Code --></p><p></p> <div id="slidebox"> <a class="close"></a> <!--HubSpot Call-to-Action Code --> <span class="hs-cta-wrapper" id="hs-cta-wrapper-8fbbcc02-29b2-4ff1-9187-d80de6257c2b"><span class="hs-cta-node hs-cta-8fbbcc02-29b2-4ff1-9187-d80de6257c2b" id="hs-cta-8fbbcc02-29b2-4ff1-9187-d80de6257c2b"> <!--[if lte IE 8]><div id="hs-cta-ie-element"></div><![endif]--><a href="https://cta-redirect.hubspot.com/cta/redirect/53/8fbbcc02-29b2-4ff1-9187-d80de6257c2b" target="_blank" rel="noopener"><img class="hs-cta-img" id="hs-cta-img-8fbbcc02-29b2-4ff1-9187-d80de6257c2b" style="border-width:0px;" src="https://no-cache.hubspot.com/cta/default/53/8fbbcc02-29b2-4ff1-9187-d80de6257c2b.png" alt="website accessibility"></a></span></span> <!-- end HubSpot Call-to-Action Code --> </div><p></p></span> <p class="post-content__publish-date">Originally published Feb 27, 2021 7:00:00 AM, updated March 04 2021</p> <div class="post-content__topic-container blog-postPage-topic"> <p>Topics:</p> <a href="//www.eigoj.com/website/web-accessibility" class="post-content__topic" data-hubs_params="false">Web Accessibility</a> </div> <div class="post-content__social-share-container"> <div id="hs_cos_wrapper_End_of_Post_CTA" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_custom_widget" style="" data-hs-cos-general-type="widget" data-hs-cos-type="custom_widget"> <div class="wt-blog__post__cta post-content__bottom-cta"> <div class="wt-blog__post__cta__content"> <h3>别忘了分享这篇文章!</h3> <div class="addthis_inline_share_toolbox"></div> </div> </div> </div> </div> </div> </div> </div> <section class="blog-section-header blog-section-header--border-top blog-section-header--arrow-down "> <h3 class="blog-section-header__heading">相关文章</h3> </section> <section class="related-posts"> <!-- hasFeaturedImage: https://www.hubspot.com/hubfs/Google%20Drive%20Integration/How%20to%20Run%20a%20Website%20Accessibility%20Check%20%28According%20to%20HubSpot%20Developers%29-1.jpeg --> <article class="blog-card blog-card--one-third "> <figure> <a href="//www.eigoj.com/website/website-accessibility-check"><img src="//www.eigoj.com/hubfs/Google%20Drive%20Integration/How%20to%20Run%20a%20Website%20Accessibility%20Check%20%28According%20to%20HubSpot%20Developers%29-1.jpeg" alt="How to Run a Website Accessibility Check (According to HubSpot Developers)" class="hsg-deferred"></a> </figure> <div class="blog-card__content"> <h3 class="blog-card__content-title"><a href="//www.eigoj.com/website/website-accessibility-check">How to Run a Website Accessibility Check (According to HubSpot Developers)</a></h3> <div class="blog-card__meta"> <a href="//www.eigoj.com/website" class="blog-card__blog-link">Website</a> <a href="//www.eigoj.com/website/website-accessibility-check" class="blog-card__read-time">|12 min read</a> </div> </div> </article> <!-- hasFeaturedImage: https://www.hubspot.com/hubfs/Google%20Drive%20Integration/28%20Website%20Accessibility%20Terms%20to%20Know%20in%202022.jpeg --> <article class="blog-card blog-card--one-third "> <figure> <a href="//www.eigoj.com/website/accessibility-terms"><img src="//www.eigoj.com/hubfs/Google%20Drive%20Integration/28%20Website%20Accessibility%20Terms%20to%20Know%20in%202022.jpeg" alt="28 Website Accessibility Terms to Know in 2022" class="hsg-deferred"></a> </figure> <div class="blog-card__content"> <h3 class="blog-card__content-title"><a href="//www.eigoj.com/website/accessibility-terms">28 Website Accessibility Terms to Know in 2022</a></h3> <div class="blog-card__meta"> <a href="//www.eigoj.com/website" class="blog-card__blog-link">Website</a> <a href="//www.eigoj.com/website/accessibility-terms" class="blog-card__read-time">|6分钟阅读</a> </div> </div> </article> <!-- hasFeaturedImage: https://www.hubspot.com/hubfs/web-content-accessibility-guidelines.jpg --> <article class="blog-card blog-card--one-third "> <figure> <a href="//www.eigoj.com/website/web-accessibility-guidelines"><img src="//www.eigoj.com/hubfs/web-content-accessibility-guidelines.jpg" alt="A Web Accessibility Checklist to Make Your Content 100% Compliant" class="hsg-deferred"></a> </figure> <div class="blog-card__content"> <h3 class="blog-card__content-title"><a href="//www.eigoj.com/website/web-accessibility-guidelines">A Web Accessibility Checklist to Make Your Content 100% Compliant</a></h3> <div class="blog-card__meta"> <a href="//www.eigoj.com/website" class="blog-card__blog-link">Website</a> <a href="//www.eigoj.com/website/web-accessibility-guidelines" class="blog-card__read-time">|21 min read</a> </div> </div> </article> </section> <div id="hs_cos_wrapper_module_163294726013371" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module" style="" data-hs-cos-general-type="widget" data-hs-cos-type="module"></div> </main> </main> <div class="blog-sticky-footer open hide" data-background="gradient4"> <div class="hs-page-width-normal"> <div class="blog-sticky-footer__container" data-timeout="3000"> <div class="blog-sticky-footer__interactor"></div> <div class="blog-sticky-footer__collapsed-content hidden-content"> <p><strong>扩展优惠</strong></p> </div> <div class="blog-sticky-footer__open-content visible-content"> <p><strong>注册HubSpot的CMS软件bob电竞官方下载</strong></p> <a href="https://www.hubspot.com/products/cms?hubs_post-cta=mobile-blog-sticky" class="cta cta--medium cta--primary blog-sticky-update">Get it now</a> <button class="cta cta--medium cta--primary blog-sticky-update">Get it now</button> </div> </div> </div> </div> <div id="blog-sticky-footer-form" class="blog-sticky-footer-form blog-sticky-footer-form--hidden"> <div class="blog-sticky-footer-form__container"> <div class="blog-sticky-footer-form__content"> <span class="blog-sticky-footer-form__close hsg-icon hsg-icon-close"></span> <div class="blog-sticky-footer-form__header"> <span class="blog-sticky-footer-form__header-pre-title"></span> <h2 class="blog-sticky-footer-form__header-title"></h2> <div class="blog-sticky-footer-form__header-content"> <div class="blog-sticky-footer-form__header-img"> <img src="" alt=""> </div> <div> <p class="blog-sticky-footer-form__header-description"></p> <div class="blog-sticky-footer-form__header-external-link-wrapper"> <a class="blog-sticky-footer-form__header-external-link" href="" target="_blank"><span></span> <svg class="cl-icon"> <use xlink:href="#external-link"></use> </svg></a> </div> </div> </div> </div> <div class="blog-sticky-footer-form__form-wrapper"> <span id="hs_cos_wrapper_blog_sticky_footer_form" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_form" style="" data-hs-cos-general-type="widget" data-hs-cos-type="form"><h3 id="hs_cos_wrapper_blog_sticky_footer_form_title" class="hs_cos_wrapper form-title" data-hs-cos-general-type="widget_field" data-hs-cos-type="text"></h3> <div id="hs_form_target_blog_sticky_footer_form"></div></span> </div> </div> </div> </div> </section> </div> <div data-modal="downloadForLater" data-exit="0" class="hsg-modal-container"> <div class="hsg-modal-contents"> <div data-background="secondary4" class="hsg-modal-header"> <span class="hsg-icon hsg-icon-close"></span> </div> <div class="hsg-modal-text" style="text-align: left"> <span id="hs_cos_wrapper_download_for_later" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_form" style="" data-hs-cos-general-type="widget" data-hs-cos-type="form"><h3 id="hs_cos_wrapper_download_for_later_title" class="hs_cos_wrapper form-title" data-hs-cos-general-type="widget_field" data-hs-cos-type="text">下载以后</h3> <div id="hs_form_target_download_for_later"></div></span> </div> </div> </div> </main> </div> </div> </div> </div> <div class="footer-container-wrapper"> <div class="footer-container container-fluid"> <div class="row-fluid-wrapper row-depth-1 row-number-1"> <div class="row-fluid "> <div class="span12 widget-span widget-type-global_group " style="" data-widget-type="global_group" data-x="0" data-w="12"> <div class="" data-global-widget-path="generated_global_groups/4255443445.html"> <div class="row-fluid-wrapper row-depth-1 row-number-1 "> <div class="row-fluid "> <div class="span12 widget-span widget-type-raw_jinja " style="" data-widget-type="raw_jinja" data-x="0" data-w="12"> <footer class="hsg-footer"> <div class="hsg-footer__layout"> <button id="back-link" class="hsg-footer__logo-caret"><span class="hsg-footer__logo-caret-home">背部</span><span class="hsg-footer__close" role="presentation"></span></button> <nav class="hsg-footer__nav"> <div class="hsg-footer__nav-left"> <section class="hsg-footer__nav-column hsg-footer__nav-column-left"> <h2 class="hsg-footer__nav-heading"><button class="hsg-footer__nav-toggle" tabindex="-1" aria-disabled="true">Popular Features</button></h2> <ul> <li class="hsg-footer__nav-item" data-order="0"><a href="https://www.hubspot.com/products/sales/schedule-meeting" data-order="0" data-linkorder="0">Free Meeting Scheduler App</a></li> <li class="hsg-footer__nav-item" data-order="1"><a href="https://www.hubspot.com/products/marketing/social-inbox" data-order="1" data-linkorder="1">Social Media Tools</a></li> <li class="hsg-footer__nav-item" data-order="2"><a href="https://www.hubspot.com/products/sales/email-tracking" data-order="2" data-linkorder="2">Email Tracking Software</a></li> <li class="hsg-footer__nav-item" data-order="3"><a href="https://www.hubspot.com/products/sales/sales-automation" data-order="3" data-linkorder="3">Sales Email Automation</a></li> <li class="hsg-footer__nav-item" data-order="4"><a href="https://www.hubspot.com/products/marketing/ads" data-order="4" data-linkorder="4">Ads Software</a></li> <li class="hsg-footer__nav-item" data-order="5"><a href="https://www.hubspot.com/products/marketing/email" data-order="5" data-linkorder="5">电子邮件营销软件bob电竞官方下载</a></li> <li class="hsg-footer__nav-item" data-order="6"><a href="https://www.hubspot.com/products/crm/lead-management" data-order="6" data-linkorder="6">潜在客户管理软件bob电竞官方下载</a></li> <li class="hsg-footer__nav-item" data-order="7"><a href="https://www.hubspot.com/products/crm/pipeline-management" data-order="7" data-linkorder="7">管道管理工具</a></li> <li class="hsg-footer__nav-item" data-order="8"><a href="https://www.hubspot.com/products/sales/email-templates-sales" data-order="8" data-linkorder="8">Sales Email Templates</a></li> <li class="hsg-footer__nav-item" data-order="9"><a href="https://www.hubspot.com/products/service/help-desk" data-order="9" data-linkorder="9">Help Desk Software</a></li> <li class="hsg-footer__nav-item" data-order="10"><a href="https://www.hubspot.com/products/marketing/forms" data-order="10" data-linkorder="10">免费的在线表格建造者</a></li> <li class="hsg-footer__nav-item" data-order="11"><a href="https://www.hubspot.com/products/crm/chatbot-builder" data-order="11" data-linkorder="11">免费聊天机器人建造者</a></li> <li class="hsg-footer__nav-item" data-order="12"><a href="https://www.hubspot.com/products/crm/live-chat" data-order="12" data-linkorder="12">Free Live Chat Software</a></li> <li class="hsg-footer__nav-item" data-order="13"><a href="https://www.hubspot.com/products/marketing/analytics" data-order="13" data-linkorder="13">营销分析</a></li> <li class="hsg-footer__nav-item" data-order="14"><a href="https://www.hubspot.com/products/marketing/landing-pages" data-order="14" data-linkorder="14">Free Landing Page Builder</a></li> </ul> </section> </div> <div class="hsg-footer__nav-right"> <div class="hsg-footer__nav-full"> <section class="hsg-footer__nav-column "> <h2 class="hsg-footer__nav-heading"><button class="hsg-footer__nav-toggle" tabindex="-1" aria-disabled="true">Free Tools</button></h2> <ul> <li class="hsg-footer__nav-item" data-order="0"><a href="https://website.grader.com/?__hstc=20629287.e4e046660731447bf82affe18aa75831.1482962870986.1487962165415.1487964870240.141&__hssc=20629287.1.1487964870240&__hsfp=3218882972" data-order="0" data-linkorder="0">网站分级器</a></li> <li class="hsg-footer__nav-item" data-order="1"><a href="https://www.hubspot.com/make-my-persona" data-order="1" data-linkorder="1">Make My Persona</a></li> <li class="hsg-footer__nav-item" data-order="2"><a href="https://www.hubspot.com/email-signature-generator" data-order="2" data-linkorder="2">Email Signature Generator</a></li> <li class="hsg-footer__nav-item" data-order="3"><a href="https://www.hubspot.com/blog-topic-generator" data-order="3" data-linkorder="3">Blog Ideas Generator</a></li> <li class="hsg-footer__nav-item" data-order="4"><a href="https://www.hubspot.com/invoice-template-generator" data-order="4" data-linkorder="4">Invoice Template Generator</a></li> <li class="hsg-footer__nav-item" data-order="5"><a href="https://www.hubspot.com/marketing-plan-template-generator" data-order="5" data-linkorder="5">Marketing Plan Generator</a></li> <li class="hsg-footer__nav-item" data-order="6"><a href="https://www.hubspot.com/business-templates" data-order="6" data-linkorder="6">Free Business Templates</a></li> <li class="hsg-footer__nav-item" data-order="7"><a href="https://www.hubspot.com/industry-data" data-order="7" data-linkorder="7">Industry Benchmark Data</a></li> <li class="hsg-footer__nav-item" data-order="8"><a href="https://www.hubspot.com/comparisons" data-order="8" data-linkorder="8">bob电竞官方下载软件比较库</a></li> </ul> </section> </div> <div class="hsg-footer__nav-full"> <section class="hsg-footer__nav-column "> <h2 class="hsg-footer__nav-heading"><button class="hsg-footer__nav-toggle" tabindex="-1" aria-disabled="true">bob全站app</button></h2> <ul> <li class="hsg-footer__nav-item" data-order="0"><a href="https://www.hubspot.com/our-story" data-order="0" data-linkorder="0">About Us</a></li> <li class="hsg-footer__nav-item" data-order="1"><a href="https://www.hubspot.com/careers" data-order="1" data-linkorder="1">职业</a></li> <li class="hsg-footer__nav-item" data-order="2"><a href="https://www.hubspot.com/company/management" data-order="2" data-linkorder="2">Management Team</a></li> <li class="hsg-footer__nav-item" data-order="3"><a href="https://www.hubspot.com/company/board-of-directors" data-order="3" data-linkorder="3">董事会</a></li> <li class="hsg-footer__nav-item" data-order="4"><a href="https://ir.hubspot.com/?_ga=2.262843276.12874469.1592422655-430007000.1592422655" data-order="4" data-linkorder="4">投资者关系</a></li> <li class="hsg-footer__nav-item" data-order="5"><a href="//www.eigoj.com" data-order="5" data-linkorder="5">Blog</a></li> <li class="hsg-footer__nav-item" data-order="6"><a href="https://www.hubspot.com/company/contact" data-order="6" data-linkorder="6">Contact Us</a></li> </ul> </section> </div> <div class="hsg-footer__nav-split"> <section class="hsg-footer__nav-column "> <h2 class="hsg-footer__nav-heading"><button class="hsg-footer__nav-toggle" tabindex="-1" aria-disabled="true">Customers</button></h2> <ul> <li class="hsg-footer__nav-item" data-order="0"><a href="https://help.hubspot.com/" data-order="0" data-linkorder="0">Customer Support</a></li> <li class="hsg-footer__nav-item" data-order="1"><a href="https://academy.hubspot.com/hubspot-user-groups" data-order="1" data-linkorder="1">Join a Local User Group</a></li> </ul> </section> <section class="hsg-footer__nav-column "> <h2 class="hsg-footer__nav-heading"><button class="hsg-footer__nav-toggle" tabindex="-1" aria-disabled="true">bob综合博彩下载</button></h2> <ul> <li class="hsg-footer__nav-item" data-order="0"><a href="https://www.hubspot.com/partners" data-order="0" data-linkorder="0">All Partner Programs</a></li> <li class="hsg-footer__nav-item" data-order="1"><a href="https://www.hubspot.com/partners/solutions" data-order="1" data-linkorder="1">Solutions Partner Program</a></li> <li class="hsg-footer__nav-item" data-order="2"><a href="https://www.hubspot.com/partners/app" data-order="2" data-linkorder="2">App Partner Program</a></li> <li class="hsg-footer__nav-item" data-order="3"><a href="https://www.hubspot.com/startups/partners" data-order="3" data-linkorder="3">用于创业的HubSpot</a></li> <li class="hsg-footer__nav-item" data-order="4"><a href="https://www.hubspot.com/partners/affiliates" data-order="4" data-linkorder="4">Affiliate Program</a></li> </ul> </section> </div> </div> </nav> </div> <section class="hsg-footer__contact-links"> <ul class="hsg-footer__social"> <li><a href="https://www.facebook.com/hubspot" target="_blank" class="hstc_facebook"><i class="hsg-icon hsg-icon-facebook"></i><span class="hidden-social">Facebook</span></a></li> <li><a href="https://www.instagram.com/hubspot" target="_blank" class="hstc_instagram"><i class="hsg-icon hsg-icon-instagram"></i><span class="hidden-social">Instagram</span></a></li> <li><a href="https://youtube.com/user/HubSpot" target="_blank" class="hstc_youtube"><i class="hsg-icon hsg-icon-youtube"></i><span class="hidden-social">YouTube</span></a></li> <li><a href="https://twitter.com/HubSpot" target="_blank" class="hstc_twitter"><i class="hsg-icon hsg-icon-twitter"></i><span class="hidden-social">推特</span></a></li> <li><a href="https://www.linkedin.com/company/hubspot" target="_blank" class="hstc_linkedin"><i class="hsg-icon hsg-icon-linkedin"></i><span class="hidden-social">Linkedin</span></a></li> <li><a href="https://medium.com/@HubSpot" target="_blank" class="hstc_medium"><i class="hsg-icon hsg-icon-medium"></i><span class="hidden-social">中等的</span></a></li> </ul> </section> <section class="hsg-footer__bottom"> <div class="hsg-footer__apps"> <a class="hsg-footer__app" href="https://apps.apple.com/us/app/hubspot/id1107711722"><img class="hsg-deferred homepage-mobile-footer-apple" data-src="https://cdn2.hubspot.net/hubfs/53/app%20store%20high%20res.png" alt="Download on the App Store"></a> <a class="hsg-footer__app" href="https://play.google.com/store/apps/details?id=com.hubspot.android&hl=en_US"><img class="hsg-deferred homepage-mobile-footer-google" data-src="https://cdn2.hubspot.net/hubfs/53/google%20play%20high%20res.png" alt="在Google Play上获取它"></a> </div> <div class="hsg-footer__logo"> <a href="https://www.hubspot.com"><img class="hsg-deferred" data-src="https://www.hubspot.com/hubfs/WBZ-1165%20Global%20Nav%20Redesign/Wordmark-White.svg" alt="HubSpot"></a> <p>Copyright © 2021 HubSpot, Inc.</p> </div> <div class="hsg-footer__copyright"> <ul> <li><a href="https://legal.hubspot.com/legal-stuff">法定的东西</a></li> <li><a href="https://legal.hubspot.com/privacy-policy">Privacy Policy</a></li> <li><a href="https://legal.hubspot.com/security">安全</a></li> </ul> </div> </section> </footer> </div> <!--end widget-span --> </div> <!--end row--> </div> <!--end row-wrapper --> </div> </div> <!--end widget-span --> </div> <!--end row--> </div> <!--end row-wrapper --> <div class="row-fluid-wrapper row-depth-1 row-number-2"> <div class="row-fluid "> <div class="span12 widget-span widget-type-raw_html " style="" data-widget-type="raw_html" data-x="0" data-w="12"> <div class="cell-wrapper layout-widget-wrapper"> <span id="hs_cos_wrapper_module_1497301113455132" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_raw_html" style="" data-hs-cos-general-type="widget" data-hs-cos-type="raw_html"> <!-- prev 4208 --></span> </div> <!--end layout-widget-wrapper --> </div> <!--end widget-span --> </div> <!--end row--> </div> <!--end row-wrapper --> </div> <!--end footer --> </div> <!--end footer wrapper --> <!--[if lte IE 8]> <script charset="utf-8" src="https://js.hsforms.net/forms/v2-legacy.js"></script> <![endif]--> <!-- Start of HubSpot Analytics Code --> <!-- End of HubSpot Analytics Code --> <!-- HREFLANG MACRO --> <!-- begin Convert --> <!-- end Convert --> <!-- wt-mktg-analytics script --> <div id="fb-root"></div> </body> </html>