标签:news ant service 发布 keyword day 简单的 data web
day1:
day2: 好的简历:
你可以参考自己的简历内容,也可以参考网上一些热门简历内容,比如 羡辙 的简历(她简历的样式每年校招简历总能看见很多人在复用,所以,希望大家以后做简历的时候换个样式吧,哪怕是换个颜色也是极好的)。
HTML语义。
article 元素section 元素div」何时使用?
一个简单的评判标准:当你希望这个元素的内容体现在文档的提纲 (outline) 中时,用 section 是合适的。
nav 元素a section with navigation links
<nav>
  <ul>
    <li><a href="/">Home</a></li>
    <li><a href="/news">News</a></li>
    <li><a>Examples</a></li>
  </ul>
</nav>
可以帮助 UA 迅速获得导航内容,例如读屏器可以省去很多渲染直接跳到导航位置。
不一定要包含 ul,也可用自然文本进行导航。
aside 元素
引述
footer 元素
<footer><!-- site footer -->
  <nav>
    <p>
      <a href="/credits.html">Credits</a> —
      <a href="/tos.html">Terms of Service</a> —
      <a href="/index.html">Blog Index</a>
    </p>
  </nav>
  <p>Copyright ? 2009 Gordon Freeman</p>
</footer>
title 属性lang 属性内容的语言
head 元素一组元数据
title 元素文档对外的标题
窗口标题 / 历史记录 / 搜索结果标题 / ...
meta 元素name / http-equiv / charsetname 属性决定种类,content 属性表示内容application-name, author, description, generator, keywords)mobile-agent, baiduspidertwitter:card, twitter:image, twitter:creator:idapplication-url, google-site-verification, googlebotrenderer (未注册)指向用来组成当前文档的外部资源,通常由 UA 自动处理
用来「导航」到其他资源 (可以在 UA 中打开, 下载, ...)
元素:link, a, area
link 元素rel 及 href 属性<link rel="author license" href="/about">
link + rel + author, link + rel + license 都有预定义的语义
link + relrel="stylesheet"链接到样式表 (外部资源)
rel="alternate"链接到当前文档的其他形式 (超链接)
<link rel="alternate" type="application/rss+xml" title="Matt Mullenweg ? Feed" href="http://ma.tt/feed/" />
 → 
h1–h6 元素<body>
  <h1>Let‘s call it a draw(ing surface)</h1>
  <h2>Diving in</h2>
  <h2>Simple shapes</h2>
</body>
<body>
  <h1>Let‘s call it a draw(ing surface)</h1>
  <section>
    <h1>Diving in</h1>
  </section>
  <section>
    <h1>Simple shapes</h1>
  </section>
</body>
语义上等价
header 元素h1–h6<header>
  <p>Welcome to...</p>
  <h1>Voidwars!</h1>
</header>
footer 元素<footer><!-- site footer -->
  <nav>
    <p>
      <a href="/credits.html">Credits</a> —
      <a href="/tos.html">Terms of Service</a> —
      <a href="/index.html">Blog Index</a>
    </p>
  </nav>
  <p>Copyright ? 2009 Gordon Freeman</p>
</footer>
address 元素代表与最近父级 article 或整个文档关联的联系人信息
<address>
  <a href="../People/Raggett/">Dave Raggett</a>,
  <a href="../People/Arnaud/">Arnaud Le Hors</a>,
  contact persons for the <a href="Activity">W3C HTML Activity</a>
</address>
 
标签:news ant service 发布 keyword day 简单的 data web
原文地址:https://www.cnblogs.com/xxh-2014/p/8944800.html