<title>网站主题-主题描述</title>
<meta name="description" content="网站内容描述">
<meta name="keywords" content="关键词1,关键词2,关键词3">
<meta name="author" content="网站作者">
<meta name="robots" content="index,follow">
结构化数据(Schema Markup)可以让搜索引擎更好地理解和解析网站内容,从而使网站在搜索结果中获得更高的曝光度和点击率。
<div itemscope itemtype="http://schema.org/LocalBusiness">
<h2 itemprop="name">公司名称</h2>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">公司地址</span>
<span itemprop="addressLocality">城市</span>,
<span itemprop="addressRegion">省份</span>,
<span itemprop="postalCode">邮编</span>,
<span itemprop="addressCountry">国家</span>
</div>
<div itemprop="telephone">公司电话号码</div>
</div>
<div itemscope itemtype="http://schema.org/Product">
<h2 itemprop="name">产品名称</h2>
<div itemprop="brand" itemscope itemtype="http://schema.org/Brand">
<span itemprop="name">品牌</span>
</div>
<h3 itemprop="model">型号</h3>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<span itemprop="price">产品价格</span>
<div itemprop="availability" itemscope itemtype="http://schema.org/ItemAvailability">InStock</div>
</div>
</div>
<div itemscope itemtype="http://schema.org/NewsArticle">
<h2 itemprop="headline">新闻标题</h2>
<div itemprop="image" itemscope itemtype="https://schema.org/ImageObject">
<img src="新闻图片链接" itemprop="url" alt="新闻图片描述">
<meta itemprop="width" content="图片宽度">
<meta itemprop="height" content="图片高度">
</div>
<div itemprop="mainEntityOfPage" itemscope itemtype="https://schema.org/WebPage">
<meta itemprop="datePublished" content="发布时间">
<meta itemprop="dateModified" content="更新时间">
<div itemprop="author" itemscope itemtype="https://schema.org/Person">
<span itemprop="name">作者姓名</span>
</div>
<div itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
<span itemprop="name">公司名称</span>
<div itemprop="logo" itemscope itemtype="https://schema.org/ImageObject">
<img src="公司logo链接" itemprop="url" alt="公司logo描述">
<meta itemprop="width" content="图片宽度">
<meta itemprop="height" content="图片高度">
</div>
</div>
</div>
</div>
<h1>内容标题</h1>
<p>内容正文</p>
<div>
<h3>标题</h3>
<p>正文内容</p>
<div class="source">
<a href="来源链接">来源标题</a>
</div>
</div>
<h1>主标题包含关键词</h1>
<h3>次标题包含关键词</h3>
<p>关键词相关内容</p>
<p>文字内容</p>
<img src="图片链接" alt="图片描述">
<h1>主标题</h1>
<p>短句子或短段落</p>
<ul>
<li>列表项1</li>
<li>列表项2</li>
</ul>
<hr>