<head>
<link rel="stylesheet" type="type/css" href="外部CSS檔案.css">
</head>
<body>
<p class="one">
這是嵌入套用,樣式為標楷體,字體大小為 14。
</p>
<p class="two">
這是嵌入套用,樣式為微軟正黑體,字體大小為 16。
</p>
<p class="three">
這是嵌入套用,樣式為微軟正黑體,字體大小為 16,顏色為藍色
</p>
</body>
/*外部CSS檔案*/
.one {
font-family:標楷體; font-size:14;
}
.two {
font-family:微軟正黑體; font-size:16;
}
.three {
font-family:微軟正黑體; font-size:16; color:blue;
}
This Pen doesn't use any external JavaScript resources.