article

英 [ˈɑ:tɪkl]   美 [ˈɑ:rtɪkl]  

n.物品;(报章杂志中的)文章,论文;条款;[语] 冠词

vt.使受协议条款的约束;以协议(或契约)约束;订约将…收为学徒(或徒弟);定约雇用

vi.进行控告,提出罪状(或指责)(against);签订协议

html5<article>标签 语法

作用:<article> 标签定义独立的内容。可能的 article 实例:论坛帖子  报纸文章  博客条目  用户评论

注释:<article> 标签的内容独立于文档的其余部分。

html5<article>标签 示例

<!DOCTYPE html>
<html>
<body>

<article>
  <h1>What Does WWF Do?</h1>
  <p>WWF's mission is to stop the degradation of our planet's natural environment, and build a future in which humans live in harmony with nature.</p>
</article>

</body>
</html>
运行实例 »

点击 "运行实例" 按钮查看在线实例

热门推荐