在我的网站底部,我有一个联系链接,其中附有hCard Microformat 数据。该数据有name,org,role,url,和email。
我是否也应该在此处为搜索引擎提供 Schema.org 类型,还是他们会阅读 hCard 数据并感到困惑?
我正在制作一份注册表,提交时需要家庭和工作地址。字段如下:
<html>
<form>
<input name="street-address" autocomplete="home street-address" required />
<input name="postal-code" autocomplete="home postal-code" required />
<input name="locality" autocomplete="home locality" required /> <!-- or "home city" -->
<input name="organization" autocomplete="organization" required />
<!-- addressee or department withing the organization. optional field -->
<input name="addressee" autocomplete="????????" />
<input name="work-street-address" autocomplete="work street-address" required />
<input name="work-postal-code" autocomplete="work postal-code" required />
<input name="work-locality" autocomplete="work locality" required />
</form>
</html>
Run Code Online (Sandbox Code Playgroud)
我正在使用http://microformats.org/wiki/hcard和https://html.spec.whatwg.org/multipage/forms.html#attr-fe-autocomplete-organization-title创建一个漂亮的浏览器兼容的自动填充表单。
我不知道收件人/部门字段是否有一个很好的自动填充名称。有人熟悉这个/或任何输入吗?
在我客户网站的页脚上,我有他的地址和版权声明,下面是网站管理员的地址.
我将使用hCard微格式.
我应该使用哪个<address>标签?
hcard ×4
microformats ×3
html ×2
vcf-vcard ×2
autofill ×1
html5 ×1
normalizing ×1
schema ×1
schema.org ×1
seo ×1