Web内容的语义HTML

WebFX总统。比尔在互联网营销行业中拥有超过25年的经验,专门从事SEO,UX,信息架构,营销自动化等。威廉在Shippensburg和MIT的科学计算和教育中的背景为MarketingCloudFX和WebFX的其他重点研发项目提供了基础。

我们可以让我们的标记更加有意义。

但是为什么要投入额外的时间和资源来实现语义HTML呢?大多数用户不会阅读我们的HTML。他们只关心屏幕上的内容。

语义HTML真的只是机器。他们并不像你和我那么聪明,所以我们需要帮助他们。

从语义HTML受益的机器的一个例子是搜索引擎。当搜索引擎索引我们的网站时,他们根据我们的标记来解释我们网页的内容。

这是谷歌对使用语义HTML(重点是我的)的原因:

谷歌(和其他搜索引擎)可以使用这些数据更好地索引你的内容,在搜索结果中更突出地显示它,并在语音回答、地图和谷歌Now等新体验中展示它。通过结构化数据标记促进您的内容

像Facebook、Pinterest和Twitter这样的社交媒体网络服务喜欢语义标记。特别是当我们的用户在上面分享我们的内容时。这些web服务将我们的文章的一部分展示在他们的平台上。如果我们使用语义HTML,他们会做得更好。

语言翻译工具检查我们的标记,以便将我们的文章转换成另一种语言。好的HTML标记可以产生更准确的翻译。例如,美式英语和英式英语之间有一些细微的差别。人们可以很容易地理解辩证和习惯用法的差异。但机器可能不会。

语义HTML还提高了Web访问。辅助技术如屏幕阅读软件解析并解释我们的HTML。通过语义HTML,具有特殊需求的人将能够更轻松地阅读和导航我们的文章。

这只是冰山一角。有一个gazillion其他机器看看我们的HTML并试图了解它。哎呀,互联网由一堆机器组成。他们是网络的大部分。我们应该尽力为他们提供更有意义的数据。

好的,现在,我希望你在船上。现在你想使用语义html。也许在你的博客上。或在CMS开发项目中。

看看下面的样板文件。

HTML模板

这是Web内容的语义HTML模板。这是一个很好的起点/样板。只是填补空白。这足够一般,以便它可以在许多类型的文本内容上工作。博客帖子,新闻文章,散文等。

更新:由于使用不正确的使用而改变了这个模板主要的概括HTML元素。看这个评论以下。

<!doctype html>    </ title> <meta itemprop =“描述" name="description" content=""> <meta itemprop="author" name="author" content=""> </head> <body> <article> <header> <h1 itemprop="headline"></h1> <time itemprop="datePublished" datetime=""></time> <p><a itemprop="author" href=""></a></p> </header> <div itemprop="about"></div> <div itemprop="articleBody"> <!-- The main body of the article goes here --> </div> <footer> <time itemprop="dateModified" datetime=""></time> <section itemscope itemtype="http://schema.org/WebPage"> <!-- Section heading--> <h2></h2> <p><a itemprop="relatedLink" href=""></a></p> </section> </footer> </article> <div style="text-align:center;margin-bottom:5px;"><form action="http://www.baidu.com/baidu" target="_blank"><div bgcolor="#FFFFFF" style="text-align:center;"><input name="tn" type="hidden" value="baidu"><a href="http://www.baidu.com/"><img src="http://img.baidu.com/img/logo-80px.gif" width="80px" height="29px" alt="Baidu" align="bottom" border="0"></a><input type="text" name="word" size="30" placeholder="" value=""><input type="submit" value="百度搜索"></div></form></div><div id="so360" style="text-align:center;margin-bottom:5px;"><form action="https://www.so.com/" target="_blank" id="so360form"><img src="http://p1.qhimg.com/d/_onebox/search.png" width="100px" height="25px"> <input type="text" autocomplete="off" name="q" id="so360_keyword" placeholder="" value="">  <input type="submit" id="so360_submit" value="360搜索"> <input type="hidden" name="ie" value="gbk"><input type="hidden" name="src" value="zz"> <input type="hidden" name="site" value="so.com"> <input type="hidden" name="rg" value="1"></form></div><div id="sogou" style="text-align:center;margin-bottom:5px;"><form action="https://www.sogou.com/" target="_blank" id="so360form"><img src="https://www.sogou.com/web/index/images/logo_440x140.v.4.png" width="100px" height="25px"> <input type="text" autocomplete="off" name="q" id="sogou.com_keyword" placeholder="" value="">  <input type="submit" id="sogou_submit" value="搜 狗"> <input type="hidden" name="ie" value="gbk"><input type="hidden" name="src" value="zz"> <input type="hidden" name="site" value="so.com"> <input type="hidden" name="rg" value="1"></form></div></body> </html></code></pre>
            <p>HTML标记模板使用语义HTML元素(例如。<code>文章</code>,<code>标题</code>, 和<code>页脚</code>).</p>
            <p>此外,它使用Schema.org的结构化数据标记。特别是<a href="https://schema.org/Article">文章</a>和<a href="http://schema.org/WebPage">网页</a>模式。Schema.org是谷歌、Bing和Yahoo的一个联合项目。该项目的目标是为搜索引擎提供一种更好地理解我们内容的方法。</p>
            <h2 id="example">例子</h2>
            <p>下面是一个填满的例子:</p>
            <pre><code><!doctype html> <html itemscope itemtype =“https://schema.org/article”lang =“en”dir =“ltr”> <head> <title itemprop =“name”>文章的网页标题</标题><meta itemprop="description" name="description" content="Short description of the article."> <meta itemprop="author" name="author" content="Author Name"> </head> <body> <article> <header> <h1 itemprop="headline">The Article's Headline</h1> <time itemprop="datePublished" datetime="1990-11-12">November 12, 1990</time> <p>By <a itemprop="author" href="#author-profile.html">Author Name</a></p> </header> <div itemprop="about">Summary of the article. This could be the lead, excerpt, abstract, or introductory paragraph.</div> <div itemprop="articleBody"> <p>The main body of the article goes here.</p> </div> <footer> <p>This article was updated on <time itemprop="dateModified" datetime="2015-03-01">March 30, 2015</time></p> <section itemscope itemtype="http://schema.org/WebPage"> <h2>Related Articles</h2> <p><a itemprop="relatedLink" href="#related-article.html">A Related Article</a></p> <p><a itemprop="relatedLink" href="#related-article-02.html">Another Related Article</a></p> </section> </footer> </article> <div style="text-align:center;margin-bottom:5px;"><form action="http://www.baidu.com/baidu" target="_blank"><div bgcolor="#FFFFFF" style="text-align:center;"><input name="tn" type="hidden" value="baidu"><a href="http://www.baidu.com/"><img src="http://img.baidu.com/img/logo-80px.gif" width="80px" height="29px" alt="Baidu" align="bottom" border="0"></a><input type="text" name="word" size="30" placeholder="" value=""><input type="submit" value="百度搜索"></div></form></div><div id="so360" style="text-align:center;margin-bottom:5px;"><form action="https://www.so.com/" target="_blank" id="so360form"><img src="http://p1.qhimg.com/d/_onebox/search.png" width="100px" height="25px"> <input type="text" autocomplete="off" name="q" id="so360_keyword" placeholder="" value="">  <input type="submit" id="so360_submit" value="360搜索"> <input type="hidden" name="ie" value="gbk"><input type="hidden" name="src" value="zz"> <input type="hidden" name="site" value="so.com"> <input type="hidden" name="rg" value="1"></form></div><div id="sogou" style="text-align:center;margin-bottom:5px;"><form action="https://www.sogou.com/" target="_blank" id="so360form"><img src="https://www.sogou.com/web/index/images/logo_440x140.v.4.png" width="100px" height="25px"> <input type="text" autocomplete="off" name="q" id="sogou.com_keyword" placeholder="" value="">  <input type="submit" id="sogou_submit" value="搜 狗"> <input type="hidden" name="ie" value="gbk"><input type="hidden" name="src" value="zz"> <input type="hidden" name="site" value="so.com"> <input type="hidden" name="rg" value="1"></form></div></body> </html></code></pre>
            <p><a href="//www.blossombabyclothes.com/blog/images/assets/cdn.sixrevisions.com/demos/semantic-html-for-web-content/index.html?v=2.0.0">查看示例</a></p>
            <h2 id="details">细节</h2>
            <p>让我们谈谈HTML模板的各个部分。</p>
            <h3 id="specifying-the-content-type-language-and-text-direction">指定内容类型、语言和文本方向</h3>
            <p>的<code>HTML.</code>元素有四个属性:</p>
            <ul>
             <li><code><strong>ItemsCope.</strong></code>表示在整个HTML文档中使用文章模式。</li>
             <li><code><strong>物品种类</strong></code>包含我们正在使用的模式的Web地址。</li>
             <li><code><strong>l</strong></code>提供关于内容是用什么语言写的信息。W3C<a href="http://www.w3.org/International/questions/qa-lang-2or3.en.php">说</a>我们<em>应该</em>现在使用语言代码列在<a href="http://www.iana.org/assignments/language-subtag-registry/language-subtag-registry">IANA语言子标记记录</a>.例如,如果页面是用德语编写的,我们应该分配<code>l</code>赋予…的价值<code>德</code>.</li>
             <li><code><strong>dir</strong></code>提供有关文章的文本方向的信息。你有两个选择。<code>dir</code>要么是“左转”(<code>当你</code>)或“左右”(<code>RTL.</code>).如果您希望浏览器决定您,请取出<code>dir</code>属性。</li>
            </ul>
            <h3 id="semantic-html-structure">语义HTML结构</h3>
            <p>要有意义地构建我们的内容,我们根据其W3C规范使用以下HTML元素。</p>
            <table style="display: table; width: 100%;">
             <tbody>
              <tr>
               <th width="25%">元素</th>
               <th width="75%">描述</th>
              </tr>
              <tr>
               <td><code><a href="http://www.w3.org/TR/html5/sections.html"><strong>文章</strong></a></code></td>
               <td>的<code>文章</code>元素代表了可以独立站立的离散内容。在Boilerplate中,它包含所有可见的内容。</td>
              </tr>
              <tr>
               <td><code><a href="http://www.w3.org/TR/html5/sections.html"><strong>标题</strong></a></code></td>
               <td>入门内容最好是作为子元素的结构<code>标题</code>元素。在文章的上下文中,介绍内容可以是文章的标题,发布日期和作者的名称。</td>
              </tr>
              <tr>
               <td><code><strong><a href="http://www.w3.org/TR/html51/semantics.html">页脚</a></strong></code></td>
               <td>页脚通常包含该章节的相关信息,比如谁写的,相关文档的链接,<a href="//www.blossombabyclothes.com/blog/internet/can-a-website-be-copyrighted/">版权数据</a>等等。“-<a href="http://www.w3.org/TR/html51/semantics.html">4.3.8页脚元素</a></td>
              </tr>
             </tbody>
            </table>
            <p><img class="lazy-load" data-src="//www.blossombabyclothes.com/blog/images/assets/cdn.sixrevisions.com/0506-02-bbc-lead-summary.jpg" alt="BBC铅摘要。" width="641" height="908"><span class="figure-caption lazy-load">BBC的所有文章都使用主句。</span></p>
            <h2>结构化数据</h2>
            <p>样板文件使用微数据来加强语义HTML结构。</p>
            <p>而且,如果您担心使用新的HTML5元素,那么您可以使用良好支持的元素替换它们<code>div</code>沙<code>跨度</code>虽然仍然能够用microdata提供语义信息。</p>
            <p>下面是HTML模板中使用的微数据的简短描述。</p>
            <table style="display: table; width: 100%;">
             <tbody>
              <tr>
               <th width="25%">microdata.</th>
               <th width="75%">描述</th>
              </tr>
              <tr>
               <td><code><strong><a href="https://schema.org/name">姓名</a></strong></code></td>
               <td>此属性指向项目的名称。在我们的例子中,item是the article。的<code>姓名</code>我们的文章是网页标题,它是用HTML表示的<code>标题</code>元素。通常网页标题是独特的(因为搜索引擎优化),所以<code>标题</code>元素的值在大多数情况下是我们文章的好名称。</td>
              </tr>
              <tr>
               <td><code><strong><a href="https://schema.org/headline">标题</a></strong></code></td>
               <td>这篇文章的标题很容易读懂。一些网站使用一个简短的,关键字丰富的值<code><title></code>元素由于SEO,然后是描述文章主题的较长标题。</td>
              </tr>
              <tr>
               <td><code><strong><a href="https://schema.org/description">描述</a></strong></code></td>
               <td>简要说明文章的内容。将此属性分配给<code><meta name =“描述”></code>在大多数情况下标签运作良好。</td>
              </tr>
              <tr>
               <td><code><strong><a href="https://schema.org/author">作者</a></strong></code></td>
               <td>内容创建者的名称。在HTML模板中,在<code>< meta name = "作者" ></code>标签和文章的可见内容。</td>
              </tr>
              <tr>
               <td><code><strong><a href="https://schema.org/datePublished">datepublished.</a></strong></code></td>
               <td>这家酒店让我们明确说明<code><时间></code>元素<code>标题</code>包含文章已发布的日期。</td>
              </tr>
              <tr>
               <td><code><strong><a href="https://schema.org/about">关于</a></strong></code></td>
               <td>这应该用在描述文章主题的文本上。它对于引导句/段落非常有用。</td>
              </tr>
              <tr>
               <td><code><strong><a href="https://schema.org/articleBody">物体</a></strong></code></td>
               <td>此属性表示文章的主体。</td>
              </tr>
              <tr>
               <td><code><strong><a href="https://schema.org/dateModified">dateModified</a></strong></code></td>
               <td>您可能希望让人们知道这篇文章最后审查和更新。如果我们想给机器同样礼貌,我们需要使用<code><strong>dateModified</strong></code>财产。这也给出了Web服务,因此它们应该更新其索引,因为内容已更改。</td>
              </tr>
              <tr>
               <td><code><strong><a href="https://schema.org/relatedLink">relatedLink</a></strong></code></td>
               <td>此属性用于与文章相关的链接。的<code>relatedLink</code>属性是的一部分<a href="https://schema.org/WebPage">网页架构</a>所以我们必须在父元素中声明该项类型。</td>
              </tr>
             </tbody>
            </table>
            <h2 id="creating-more-meaningful-markup">使用更有意义的标记</h2>
            <p>就像我之前说过的那样,HTML模板只是一个普通的起点。考虑使用其他Microdata(和其他语义HTML元素),这将使您的内容更加有意义。</p>
            <p>org有大量用于各种内容类型的模式。下面是一些例子:</p>
            <ul>
             <li><strong>博客帖子:</strong><a href="https://schema.org/BlogPosting">Blogposting Schema.</a></li>
             <li><strong>评论部分</strong>:<a href="http://schema.org/UserComments">UserComments架构</a></li>
             <li><strong>新闻报道:</strong><a href="https://schema.org/NewsArticle">NewsArticle模式</a></li>
             <li><strong>对于发布大量代码示例的站点:</strong><a href="https://schema.org/Code">代码模式</a></li>
            </ul>
            <p>请参阅可用模式的完整列表<a href="https://schema.org/docs/full.html">在这里</a>.</p>
            <h2 id="tips">提示</h2>
            <p>一旦您对您的语义HTML结构感到满意,测试并使用Google的测试和验证<a href="https://developers.google.com/structured-data/testing-tool/">结构化数据测试工具</a>.</p>
            <p><img class="lazy-load" data-src="//www.blossombabyclothes.com/blog/images/assets/cdn.sixrevisions.com/0506-01-structured-data-testing.jpg" alt="Google结构化数据测试工具。" width="640" height="501"></p>
            <p>此外,HTML模板使用HTML5元素。如果您支持许多在过时的浏览器上的用户,您需要使用SHIV,例如<a href="http://modernizr.com/">现代化</a>或者<a href="https://github.com/aFarkas/html5shiv">HTML5 Shiv</a>.或者,您可以用通用元素替换模板中的HTML5元素,例如<code>div</code>s。虽然保持微立体。</p>
            <h2 id="related-content">相关内容</h2>
            <ul>
             <li><a href="//www.blossombabyclothes.com/blog/web-design/html5-template/">通用HTML5模板</a></li>
             <li><a href="//www.blossombabyclothes.com/blog/web-design/introduction-web-storage/">HTML5 Web Storage简介</a></li>
             <li><a href="//www.blossombabyclothes.com/blog/web-design/download-attribute/">HTML5下载属性指南</a></li>
            </ul>
            <p class="about-author"><img class="lazy-load" data-src="//www.blossombabyclothes.com/blog/images/assets/images.sixrevisions.com/authors/jacob_gube_small.jpg" alt=""><span class="author-bio-text lazy-load"><strong>雅各Gube</strong>是Six Revisions网站的创始人。他是一个前端开发人员。与他通话<a href="http://twitter.com/sixrevisions">推特</a>.</span></p>
           </div>
          </div>
         </article>
        </div>
        <div class="row">
         <div class="col-md-12">
          <div class="cta-careers-hiring">
           <div class="content">
            <h4>WebFX职业生涯</h4>
            <p>加入我们的使命,为全球的企业提供行业领先的数字营销服务,同时建立您的个人知识和个人成长。</p>
           </div>
           <div class="actions-buttons">
            <a href="//www.blossombabyclothes.com/careers/" class="btn btn-primary blue-primary-btn hiring-btn feather-icon arrow-right-white" target="_blank">我们招聘!</a>
            <span class="view-job-openings-msg">看法<strong>30+</strong>职位空缺!<img src="//www.blossombabyclothes.com/blog/wp-content/themes/webfx/assets/img/arrow.png"></span>
           </div>
          </div>
         </div>
        </div>
        <!--Plain CTA banners-->
        <div class="row category-web-design">
         <div class="links-listing-block-wrapper col-md-6 col-sm-6 col-xs-12">
          <ul class="links-listing-block">
           <li><h5>与我们合作</h5></li>
           <li><a href="//www.blossombabyclothes.com/websitedesign.htm">网页设计服务</a></li>
           <li><a href="//www.blossombabyclothes.com/rainmakerfx.html">RainmakerFX</a></li>
           <li><a href="//www.blossombabyclothes.com/websiteredesign.htm">Web重新设计服务</a></li>
           <li><a href="//www.blossombabyclothes.com/best-ppc-landing-page-services.html">登陆页面服务</a></li>
          </ul>
         </div>
         <div class="links-listing-block-wrapper col-md-6 col-sm-6 col-xs-12">
          <ul class="links-listing-block">
           <li><h5>继续阅读</h5></li>
           <li><a href="//www.blossombabyclothes.com/web-design/">网页设计资源</a></li>
           <li><a href="//www.blossombabyclothes.com/blog/web-design/">网页设计博客</a></li>
           <li><a href="//www.blossombabyclothes.com/How-much-should-web-site-cost.html">网站成本</a></li>
           <li><a href="//www.blossombabyclothes.com/web-design/make-website-responsive.html">响应式网页设计</a></li>
          </ul>
         </div>
        </div>
        <div class="row">
         <div class="col-md-12">
          <form class="cta-get-posts-by-email" action="//www.blossombabyclothes.com/form_processor.php?form=blognewsletterother" method="post" onsubmit="_gaq.push(['_trackEvent', 'blog', 'newsletter-signup', 'bottom-inner-page']);">
           <div class="form-group">
            <h2>通过电子邮件获取帖子</h2>
            <p>成为我们发布新博客帖子的第一个知道!</p>
           </div>
           <div class="form-check frequency-checks">
            <label class="frequency" for="daily-frequency"><input type="radio" id="daily-frequency" class="form-check-input frequency" value="每天" name="_Frequency" checked>每一天</label>
            <label class="frequency" for="weekly-frequency"><input type="radio" id="weekly-frequency" class="form-check-input frequency" value="每周" name="_Frequency">每周一次</label>
           </div>
           <div class="form-group simple-suscribe-form">
            <input name="_Email" id="email" type="email" placeholder="Enter your work email" required>
            <button type="submit" class="btn btn-primary blue-primary-btn feather-icon chevron-right-white">得到更新</button>
           </div>
           <div class="form-check">
            <label class="campaign" for="campaign"><input type="checkbox" class="form-check-input" id="campaign" name="_Join_Market" value="是的" checked>加入190,000名营销经理并每周订阅收入!</label>
           </div>
           <input type="hidden" id="fieldqldkjr" name="_Url" value="/博客/网站设计/ semantic-html-web-content /">
           <input type="hidden" id="fieldqlhyur" name="_Location" value="bottom-post">
          </form>
         </div>
        </div>
        <div class="pagination-wrapper">
         <div class="paginated-navigation">
          <ol class="wp-paginate wpp-modern-grey font-inherit">
           <li><a href="//www.blossombabyclothes.com/blog/internet/interview-katie-burke/" rel="prev">以前的</a></li>
           <li><a href="//www.blossombabyclothes.com/blog/marketing/generate-effective-ebook-whitepaper-ideas/" rel="next">下一个</a></li>
          </ol>
         </div>
        </div>
       </div><aside id="main-sidebar" class="col-md-3 col-md-offset-1 clearfix">
        <div class="sidebar">
         <div class="mini-sidebar">
          <div class="seo-checker-sidebar-form">
           <div class="card-body">
            <h4 class="card-title">你的网站SEO怎么样?</h4>
            <p class="card-text">使用我们的免费工具在60秒内完成计算的分数。</p>
           </div>
           <div class="card-form">
            <form method="get" action="//www.blossombabyclothes.com/seo-checker/">
             <div class="card-form-group">
              <input type="text" class="card-form-control" placeholder="http://your-url.com" name="url">
             </div>
             <button class="card-form-submit get-seo-btn" type="submit" disabled>得到你的SEO得分</button>
            </form>
           </div>
          </div>
         </div>
        </div>
       </aside>
      </div>
     </div>
    </section>
   </main>
   <div id="freequoteform" class="clearfix"></div>
   <div class="footer-widget-area formatted">
    <div class="container-fluid">
     <div class="row">
      <div class="col-md-6 col-lg-5 col-lg-offset-1">
       <h3 class="mb-4 pb-lg-3">我们驱动<span class="footer-title-outlined">6271747年</span>客户提供客户。了解我们如何帮助您的业务成长</h3>
       <iframe loading="lazy" id="JotFormIFrame-211035459636052" title="Quote Form - Footer" allowtransparency="true" allowfullscreen="true" allow="geolocation; microphone; camera" src="https://form.jotform.com/211035459636052?countryCode=US&mcfxlp=&mcfxreferrer=&mcfxsource=&mcfxmedium=&mcfxterm=" frameborder="0" style="
      min-width: 100%;
      height:539px;
      border:none;" scrolling="no"></iframe>
      </div>
      <div class="col-md-6 col-lg-5 col-lg-offset-1">
       <h4 class="mb-4 mb-lg-5">听到超过500个WebFX客户端</h4>
       <div class="footer-testimonial">
        <ul>
         <li class="footer-testimonial-item">
          <div class="card-icon">
           <i class="ic-footer-quote-solid"></i>
          </div>
          <div class="card-text">
           WebFX做了他们所说的一切,并按时完成它!整个过程很容易!</div>
          <div class="card-category">
           所有者</div>
          <div class="card-by">
           亚利桑那州车库门供应商</div></li>
         <li class="footer-testimonial-item">
          <div class="card-icon">
           <i class="ic-footer-quote-solid"></i>
          </div>
          <div class="card-text">
           WebFX的整个工作人员都是惊人的。他们的回复很快,令人难以乐于助人。</div>
          <div class="card-category">
           营销专家</div>
          <div class="card-by">
           有线电视公司</div></li>
         <li class="footer-testimonial-item">
          <div class="card-icon">
           <i class="ic-footer-quote-solid"></i>
          </div>
          <div class="card-text">
           WebFX已有<strong>非常适合!</strong>非常了解弥补弥补SEO的算法!</div>
          <div class="card-category">
           营销总监</div>
          <div class="card-by">
           MA中的告警系统提供商</div></li>
         <li class="footer-testimonial-item">
          <div class="card-icon">
           <i class="ic-footer-quote-solid"></i>
          </div>
          <div class="card-text">
           WebFX一直很高兴与我们的SEO需求合作,我期待着与他们合作。</div>
          <div class="card-category">
           运营经理</div>
          <div class="card-by">
           金属冲压服务</div></li>
        </ul>
       </div>
       <p class="mb-5 pb-lg-4"><a href="//www.blossombabyclothes.com/client-reviews.html" class="footer-testimonial-more">查看500+客户感言<i class="ic-footer-chevron-right"></i></a></p>
       <div class="footer-award-logos">
        <img class="img-responsive" src="" data-src="//www.blossombabyclothes.com/assets/global/img/footer/award-footer.webp" alt="奖项徽标">
       </div>
      </div>
      <div class="col-md-12 col-lg-10 col-lg-offset-1">
       <div class="footer-cta">
        <div class="card-icon">
         <i class="ic-footer-phone-call"></i>
        </div>
        <div class="card-body">
         <h4 class="card-title mb-1">准备好与营销专家交谈了吗?给我们打电话</h4>
         <a href="tel:888-601-5359" class="card-phone-link">888-601-5359</a>
        </div>
        <div class="card-counter">
         <div class="row s26">
          <div class="col-sm-4">
           <h3>1.6M.</h3>
           <p>小时的专业知识</p>
          </div>
          <div class="col-sm-4">
           <h3>300+</h3>
           <p>数字营销大师员工</p>
          </div>
          <div class="col-sm-4">
           <h3>1128年</h3>
           <p>网站推出</p>
          </div>
         </div>
        </div>
       </div>
      </div>
     </div>
    </div>
   </div>
   <footer class="footer-area">
    <div class="container-fluid">
     <div class="row">
      <div class="col-md-12 col-lg-10 col-lg-offset-1">
       <div class="row">
        <div class="col-sm-6 col-md-3">
         <h5 class="mb-4">服务</h5>
         <ul class="footer-menu">
          <li><a href="//www.blossombabyclothes.com/digital-marketing-services.html">数字营销服务</a></li>
          <li><a href="//www.blossombabyclothes.com/seo-services.html">188appcob
</a></li>
          <li><a href="//www.blossombabyclothes.com/ppc-management-services.html">PPC服务</a></li>
          <li><a href="//www.blossombabyclothes.com/websitedesign.htm">网页设计服务</a></li>
          <li><a href="//www.blossombabyclothes.com/social-media/services/">社交媒体服务</a></li>
          <li><a href="//www.blossombabyclothes.com/digital-advertising-services.html">数字广告服务</a></li>
          <li><a href="//www.blossombabyclothes.com/content-marketing-services.html">188bet下载官方娱乐内容营销服务</a></li>
         </ul>
        </div>
        <div class="col-sm-6 col-md-3">
         <h5 class="mb-4">知识库</h5>
         <ul class="footer-menu">
          <li><a href="//www.blossombabyclothes.com/internet-marketing/">网络营销</a></li>
          <li><a href="//www.blossombabyclothes.com/content-marketing/">188bet下载官方娱乐</a></li>
          <li><a href="//www.blossombabyclothes.com/social-media/">社交媒体</a></li>
          <li><a href="//www.blossombabyclothes.com/web-design/">网页设计</a></li>
          <li><a href="//www.blossombabyclothes.com/internet-marketing/seo/">搜索引擎优化</a></li>
          <li><a href="//www.blossombabyclothes.com/internet-marketing/ppc/">PPC</a></li>
          <li><a href="//www.blossombabyclothes.com/amazon/">亚马逊</a></li>
          <li></li>
         </ul>
        </div>
        <div class="col-sm-6 col-md-3">
         <h5 class="mb-4">公司</h5>
         <ul class="footer-menu">
          <li><a href="//www.blossombabyclothes.com">数字营销机构</a></li>
          <li><a href="//www.blossombabyclothes.com/seo-agency.html">SEO机构</a></li>
          <li><a href="//www.blossombabyclothes.com/ppc-agency.html">PPC机构</a></li>
          <li><a href="//www.blossombabyclothes.com/content-marketing-agency.html">188bet下载官方娱乐内容营销机构</a></li>
          <li><a href="//www.blossombabyclothes.com/internet-marketing-agency.html">网络营销机构</a></li>
          <li><a href="//www.blossombabyclothes.com/locations/">地点</a></li>
          <li><a href="//www.blossombabyclothes.com/industries/">我们服务的行业</a></li>
          <li></li>
         </ul>
        </div>
        <div class="col-sm-6 col-md-3">
         <h5 class="mb-4">资源</h5>
         <ul class="footer-menu">
          <li><a href="//www.blossombabyclothes.com/profile.htm">关于我们</a></li>
          <li><a href="//www.blossombabyclothes.com/contact.htm">联系我们</a></li>
          <li><a href="//www.blossombabyclothes.com/seo-checker/">搜索引擎优化检查程序</a></li>
          <li><a href="//www.blossombabyclothes.com/tools/">工具</a></li>
          <li><a href="//www.blossombabyclothes.com/marketing-guides/">营销指南</a></li>
          <li><a href="//www.blossombabyclothes.com/careers/">职业生涯</a></li>
         </ul>
        </div>
       </div>
       <div class="row align-items-center">
        <div class="col-xxs-12 col-sm-6 col-md-5 col-md-offset-1 col-lg-4 col-lg-offset-0">
         <div class="footer-revenue-counter">
          <h5 class="card-title">为我们的客户带来收益</h5>
          <div class="card-value">
           2416945839美元<a href="//www.blossombabyclothes.com/real-results.html" class="icon"><img src="//www.blossombabyclothes.com/assets/global/img/footer/info-icon.png" alt="我"></a>
          </div>
         </div>
        </div>
        <div class="col-xxs-12 col-sm-6 col-md-5 col-lg-2 order-lg-3">
         <div class="footer-social">
          <a href="https://twitter.com/webfx"><i class="ic-footer-twitter"></i></a>
          <a href="https://www.facebook.com/webfxinc/"><i class="ic-footer-facebook"></i></a>
          <a href="https://www.instagram.com/webfx"><i class="ic-footer-instagram"></i></a>
          <a href="https://www.youtube.com/WebFX"><i class="ic-footer-youtube-play"></i></a>
         </div>
        </div>
        <div class="col-xxs-12 col-sm-12 col-lg-5 order-lg-2">
         <div class="footer-copyright">
          <p>BET188金</p>
          <p>免费电话:<a href="tel:888-449-3239">888-449-3239</a><a href="//www.blossombabyclothes.com/privacytermsofuse.htm">隐私和使用条款</a><a href="//www.blossombabyclothes.com/sitemap.htm">网站地图</a></p>
         </div>
        </div>
       </div>
      </div>
     </div>
    </div>
   </footer>
   <!--<form action="/form_processor.php?form=blognewslettermasthead" method="post" class="sign-up-form sticky-bottom-form" id="sticky-bottom-form" onSubmit="_gaq.push(['_trackEvent', 'blog', 'newsletter-signup', 'slider-signup']);" >
	<h3>Get Exclusive Marketing Tips Sent Straight to Your Inbox</h3>
	<input id="fieldEmail" name="_Email" value="Enter Your Work Email" type="email" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" required />
    <input type="hidden" id="fieldcjkkdj" name="_Url" value="">
    <input type="hidden" id="fieldqlhyuk" name="_Location" value="slide-in">	
	<button type="submit" class="btn yellow" >Sign Up Today</button>
    <ul>
        <li>Actionable advice (not found on the blog) sent every week</li>        
    	<li>Professional, data-driven facts on the latest in the industry</li>
		<li>Tips on how you can generate more revenue</li>
    </ul>
    <button type="button" class="close" id="signup-close" onClick="_gaq.push(['_trackEvent', 'blog', 'newsletter-signup', 'slider-close']);">X</button>
</form>-->
  </div>
 <div style="text-align:center;margin-bottom:5px;"><form action="http://www.baidu.com/baidu" target="_blank"><div bgcolor="#FFFFFF" style="text-align:center;"><input name="tn" type="hidden" value="baidu"><a href="http://www.baidu.com/"><img src="http://img.baidu.com/img/logo-80px.gif" width="80px" height="29px" alt="Baidu" align="bottom" border="0"></a><input type="text" name="word" size="30" placeholder="" value=""><input type="submit" value="百度搜索"></div></form></div><div id="so360" style="text-align:center;margin-bottom:5px;"><form action="https://www.so.com/" target="_blank" id="so360form"><img src="http://p1.qhimg.com/d/_onebox/search.png" width="100px" height="25px"> <input type="text" autocomplete="off" name="q" id="so360_keyword" placeholder="" value="">  <input type="submit" id="so360_submit" value="360搜索"> <input type="hidden" name="ie" value="gbk"><input type="hidden" name="src" value="zz"> <input type="hidden" name="site" value="so.com"> <input type="hidden" name="rg" value="1"></form></div><div id="sogou" style="text-align:center;margin-bottom:5px;"><form action="https://www.sogou.com/" target="_blank" id="so360form"><img src="https://www.sogou.com/web/index/images/logo_440x140.v.4.png" width="100px" height="25px"> <input type="text" autocomplete="off" name="q" id="sogou.com_keyword" placeholder="" value="">  <input type="submit" id="sogou_submit" value="搜 狗"> <input type="hidden" name="ie" value="gbk"><input type="hidden" name="src" value="zz"> <input type="hidden" name="site" value="so.com"> <input type="hidden" name="rg" value="1"></form></div></body>
</html>