案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<main>
6
  <h1>Web Browsers</h1>
7
  <p>Google Chrome、Firefox 以及 Internet Explorer 是目前最流行的浏览器。</p>
8
9
  <article>
10
    <h1>Google Chrome</h1>
11
    <p>Google Chrome 是由 Google 开发的一款免费的开源 web 浏览器,于 2008 年发布。</p>
12
  </article>
13
14
  <article>
15
    <h1>Internet Explorer</h1>
16
    <p>Internet Explorer 由微软开发的一款免费的 web 浏览器,发布于 1995 年。</p>
17
  </article>
18
19
  <article>
20
    <h1>Mozilla Firefox</h1>
21
    <p>Firefox 是一款来自 Mozilla 的免费开源 web 浏览器,发布于 2004 年。</p>
22
  </article>
23
</main> 
24
25
</body>
26
</html>
27