实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
body {color:red;}
6
h1 {color:#00ff00;}
7
p.ex {color:rgb(0,0,255);}
8
</style>
9
</head>
10
11
<body>
12
<h1>This is heading 1</h1>
13
<p>This is an ordinary paragraph. Notice that this text is red. The default text-color for a page is defined in the body selector.</p>
14
<p class="ex">This is a paragraph with class="ex". This text is blue.</p>
15
</body>
16
</html>
17