2008年1月15日 星期二

學習 CSS / 文字 - 設定文字顏色 No.1

www.w3schools.com
【Set the color of the text】
(執行結果請看上方)

<html>
<head>
<style type="text/css">風格設定
h1 {color: #00ff00}設定h1格式
h2 {color: #dda0dd}設定h2格式
p {color: rgb(0,0,255)}設定p格式
</style>
</head>

<body>顯示主體
<h1>This is header 1</h1>套用h1格式
<h2>This is header 2</h2>套用h2格式
<p>This is a paragraph</p>套用p格式
</body>
</html>

.

沒有留言:

Loading...

最新文章