x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
h1 {
7
font-size: 40px;
8
}
9
10
h2 {
11
font-size: 30px;
12
}
13
14
p {
15
font-size: 14px;
16
}
17
</style>
18
</head>
19
<body>
20
21
<h1>This is heading 1</h1>
22
<h2>This is heading 2</h2>
23
<p>This is a paragraph.</p>
24
<p>允许在 Internet Explorer 9, Firefox, Chrome, Opera, 和 Safari 中通过缩放浏览器调整文本大小。</p>
25
<p><b>注意:</b>这个例子在 IE9之前的版本不工作, prior version 9.</p>
26
27
</body>
28
</html>